diff options
| author | Chong Yidong | 2012-06-12 13:47:14 +0800 |
|---|---|---|
| committer | Chong Yidong | 2012-06-12 13:47:14 +0800 |
| commit | f1a4e679f3b0696089b4fd73717307ba5d23e1cf (patch) | |
| tree | dc44016b20723e38247300b6c6eaec3cd4e98761 /lisp/textmodes | |
| parent | bf67e61f291a82a9e90a7918f5188714853f0094 (diff) | |
| download | emacs-f1a4e679f3b0696089b4fd73717307ba5d23e1cf.tar.gz emacs-f1a4e679f3b0696089b4fd73717307ba5d23e1cf.zip | |
Various minor variable/hook cleanups.
* lisp/emacs-lisp/edebug.el (edebug-inhibit-emacs-lisp-mode-bindings):
Rename from gud-inhibit-global-bindings.
* lisp/emacs-lisp/eieio.el (eieio-pre-method-execution-hooks): Doc fix.
* lisp/erc/erc-dcc.el (erc-dcc-chat-filter-functions): Rename from
erc-dcc-chat-filter-hook, since this is an abnormal hook.
* lisp/nxml/nxml-glyph.el (nxml-glyph-set-functions): Rename abnormal
hook from nxml-glyph-set-hook.
* lisp/progmodes/cwarn.el (cwarn-mode): Remove redundant variable
declaration.
* lisp/progmodes/pascal.el (pascal-toggle-completions): Doc fix.
* lisp/textmodes/bibtex.el (bibtex-string-file-path, bibtex-file-path):
Convert to defcustom.
* lisp/url/url-handlers.el (url-handler-regexp):
* lisp/url/url-nfs.el (url-nfs-automounter-directory-spec):
* lisp/url/url-vars.el (url-load-hook): Convert to defcustom.
Diffstat (limited to 'lisp/textmodes')
| -rw-r--r-- | lisp/textmodes/bibtex.el | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/lisp/textmodes/bibtex.el b/lisp/textmodes/bibtex.el index 87a32ad47a9..31656918fad 100644 --- a/lisp/textmodes/bibtex.el +++ b/lisp/textmodes/bibtex.el | |||
| @@ -916,8 +916,10 @@ to the directories specified in `bibtex-string-file-path'." | |||
| 916 | :group 'bibtex | 916 | :group 'bibtex |
| 917 | :type '(repeat file)) | 917 | :type '(repeat file)) |
| 918 | 918 | ||
| 919 | (defvar bibtex-string-file-path (getenv "BIBINPUTS") | 919 | (defcustom bibtex-string-file-path (getenv "BIBINPUTS") |
| 920 | "Colon separated list of paths to search for `bibtex-string-files'.") | 920 | "Colon-separated list of paths to search for `bibtex-string-files'." |
| 921 | :group 'bibtex | ||
| 922 | :type 'string) | ||
| 921 | 923 | ||
| 922 | (defcustom bibtex-files nil | 924 | (defcustom bibtex-files nil |
| 923 | "List of BibTeX files that are searched for entry keys. | 925 | "List of BibTeX files that are searched for entry keys. |
| @@ -930,8 +932,10 @@ See also `bibtex-search-entry-globally'." | |||
| 930 | :type '(repeat (choice (const :tag "bibtex-file-path" bibtex-file-path) | 932 | :type '(repeat (choice (const :tag "bibtex-file-path" bibtex-file-path) |
| 931 | directory file))) | 933 | directory file))) |
| 932 | 934 | ||
| 933 | (defvar bibtex-file-path (getenv "BIBINPUTS") | 935 | (defcustom bibtex-file-path (getenv "BIBINPUTS") |
| 934 | "Colon separated list of paths to search for `bibtex-files'.") | 936 | "Colon separated list of paths to search for `bibtex-files'." |
| 937 | :group 'bibtex | ||
| 938 | :type 'string) | ||
| 935 | 939 | ||
| 936 | (defcustom bibtex-search-entry-globally nil | 940 | (defcustom bibtex-search-entry-globally nil |
| 937 | "If non-nil, interactive calls of `bibtex-search-entry' search globally. | 941 | "If non-nil, interactive calls of `bibtex-search-entry' search globally. |