diff options
author | Luc Teirlinck <teirllm@auburn.edu> | 2004-08-22 21:11:43 +0000 |
---|---|---|
committer | Luc Teirlinck <teirllm@auburn.edu> | 2004-08-22 21:11:43 +0000 |
commit | 49eac10f921716d0cac034c977731fddd115388a (patch) | |
tree | c78eb4a832ba7c2e180a38b656fc29be00c38291 /lisp/speedbar.el | |
parent | 2ee3b79e47ac5afd833dd77decf3173748ca05ee (diff) | |
download | emacs-49eac10f921716d0cac034c977731fddd115388a.tar.gz |
(speedbar-file-regexp): Give it a phony defvar before and a real
defvar after `speedbar-supported-extension-expressions'. This is to
silence the compiler without breaking bootstrapping.
Diffstat (limited to 'lisp/speedbar.el')
-rw-r--r-- | lisp/speedbar.el | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/lisp/speedbar.el b/lisp/speedbar.el index 524a6d4f2f8..1a222e6004e 100644 --- a/lisp/speedbar.el +++ b/lisp/speedbar.el @@ -665,12 +665,8 @@ useful, such as version control." "*Regexp matching files we don't want displayed in a speedbar buffer. It is generated from the variable `completion-ignored-extensions'") -;; This can't be further down, since it is needed just after. -(defvar speedbar-file-regexp - (speedbar-extension-list-to-regex speedbar-supported-extension-expressions) - "Regular expression matching files we know how to expand. -Created from `speedbar-supported-extension-expression' with the -function `speedbar-extension-list-to-regex'") +;; Ugly compiler silencing trick. The real defvar comes later in this file. +(defvar speedbar-file-regexp) ;; this is dangerous to customize, because the defaults will probably ;; change in the future. @@ -698,6 +694,12 @@ file." (setq speedbar-supported-extension-expressions val speedbar-file-regexp (speedbar-extension-list-to-regex val)))) +(defvar speedbar-file-regexp + (speedbar-extension-list-to-regex speedbar-supported-extension-expressions) + "Regular expression matching files we know how to expand. +Created from `speedbar-supported-extension-expression' with the +function `speedbar-extension-list-to-regex'") + (defcustom speedbar-scan-subdirs nil "*Non-nil means speedbar will check if subdirs are empty. That way you don't have to click on them to find out. But this |