summary refs log tree commit diff stats
path: root/init.el
diff options
context:
space:
mode:
authorCase Duckworth2021-09-26 17:20:57 -0500
committerCase Duckworth2021-09-26 17:20:57 -0500
commit3ee9f368b868565b2c1816cfc0173cf5338a6800 (patch)
tree50c7730dabf5633bfbc3188d7ca82a9d22f9b2d3 /init.el
parentDon't error when requiring chd.el (diff)
downloademacs-3ee9f368b868565b2c1816cfc0173cf5338a6800.tar.gz
emacs-3ee9f368b868565b2c1816cfc0173cf5338a6800.zip
Whitespace
Diffstat (limited to 'init.el')
-rw-r--r--init.el7
1 files changed, 4 insertions, 3 deletions
diff --git a/init.el b/init.el index 49d933a..f3e1cb5 100644 --- a/init.el +++ b/init.el
@@ -1909,7 +1909,8 @@ browser defined in `browse-url-secondary-browser-function'."
1909 1909
1910 (el-patch-feature org) 1910 (el-patch-feature org)
1911 (with-eval-after-load 'org 1911 (with-eval-after-load 'org
1912 (el-patch-defun org-format-outline-path (path &optional width prefix separator) 1912 (el-patch-defun org-format-outline-path (path &optional
1913 width prefix separator)
1913 "Format the outline path PATH for display. 1914 "Format the outline path PATH for display.
1914WIDTH is the maximum number of characters that is available. 1915WIDTH is the maximum number of characters that is available.
1915PREFIX is a prefix to be included in the returned string, 1916PREFIX is a prefix to be included in the returned string,
@@ -1930,8 +1931,8 @@ the default is \"/\"."
1930 for n from 0 1931 for n from 0
1931 collect (el-patch-swap 1932 collect (el-patch-swap
1932 (org-add-props 1933 (org-add-props
1933 head nil '`face 1934 head nil 'face
1934 (nth (% n org-n-level-faces) org-level-faces)) 1935 (nth (% n org-n-level-faces) org-level-faces))
1935 head)) 1936 head))
1936 separator)))) 1937 separator))))
1937 (when (> (length fpath) width) 1938 (when (> (length fpath) width)