aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephen Eglen2003-05-31 16:21:25 +0000
committerStephen Eglen2003-05-31 16:21:25 +0000
commite47525c4429eb22d838bae8e67b2699bee40763e (patch)
tree8137800ad021d583b57fab3e266f3db4f7920cab
parenta52eeda8236cd73ca2e4568daa77ec7457a4fc36 (diff)
downloademacs-e47525c4429eb22d838bae8e67b2699bee40763e.tar.gz
emacs-e47525c4429eb22d838bae8e67b2699bee40763e.zip
(iswitchb-buffer-ignore): Update custom type to allow functions.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/iswitchb.el2
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 1597c731eaa..c89b0c98941 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12003-05-31 Stephen Eglen <stephen@gnu.org>
2
3 * iswitchb.el (iswitchb-buffer-ignore): Update custom type to
4 allow functions.
5
12003-05-31 Stefan Monnier <monnier@cs.yale.edu> 62003-05-31 Stefan Monnier <monnier@cs.yale.edu>
2 7
3 * wid-edit.el (widget-specify-insert): Simplify. 8 * wid-edit.el (widget-specify-insert): Simplify.
diff --git a/lisp/iswitchb.el b/lisp/iswitchb.el
index ac384a3a874..361d7ad673d 100644
--- a/lisp/iswitchb.el
+++ b/lisp/iswitchb.el
@@ -293,7 +293,7 @@ is temporarily case sensitive."
293For example, traditional behavior is not to list buffers whose names begin 293For example, traditional behavior is not to list buffers whose names begin
294with a space, for which the regexp is `^ '. See the source file for 294with a space, for which the regexp is `^ '. See the source file for
295example functions that filter buffernames." 295example functions that filter buffernames."
296 :type '(repeat regexp) 296 :type '(repeat (choice regexp function))
297 :group 'iswitchb) 297 :group 'iswitchb)
298 298
299(defcustom iswitchb-cannot-complete-hook 'iswitchb-completion-help 299(defcustom iswitchb-cannot-complete-hook 'iswitchb-completion-help