diff options
author | Kyle Meyer <kyle@kyleam.com> | 2015-09-20 20:24:42 -0400 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2015-09-20 20:24:42 -0400 |
commit | bd91dc120cab74287d58736648fb9880d6528ab8 (patch) | |
tree | 40909807d793b649424d3ec46928c5c389e88a92 /lisp | |
parent | 2d617864119bebbdef60bfce5f23a9eb70ace86a (diff) | |
download | emacs.d-bd91dc120cab74287d58736648fb9880d6528ab8.tar.gz |
Make all bib cleaning functions non-interactive
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/init-bib.el | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lisp/init-bib.el b/lisp/init-bib.el index aa4cd6b..39840ee 100644 --- a/lisp/init-bib.el +++ b/lisp/init-bib.el @@ -45,7 +45,6 @@ the next article you read will have \"athwart\" in the title.") Change words in `km/bibtex-unimportant-title-words' to lower case, unless the word is the first word in the title. Capitalize all other words unless they are protected by brackets." - (interactive) (save-excursion (bibtex-beginning-of-entry) (let* ((text-bounds (cdr (bibtex-search-forward-field "title" t))) @@ -79,7 +78,6 @@ all other words unless they are protected by brackets." (defun km/bibtex-single-space-author-list () "Convert multiple spaces in author list to single space." - (interactive) (save-excursion (bibtex-beginning-of-entry) (let* ((text-bounds (cdr (bibtex-search-forward-field "author" t))) @@ -111,7 +109,6 @@ to (defun km/bibtex-pages-use-double-hyphen () "Use double hyphen for page range." - (interactive) (save-excursion (bibtex-beginning-of-entry) (let* ((text-bounds (cdr (bibtex-search-forward-field "pages" t))) @@ -124,7 +121,6 @@ to (defun km/bibtex-remove-doi-leader () "Remove leading part (http:...) of doi URL." - (interactive) (save-excursion (bibtex-beginning-of-entry) (let* ((text-bounds (cdr (bibtex-search-forward-field "doi" t))) |