From 7b1730dd1fd836aa4b524dd521557063ce33fd44 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Mon, 5 Mar 2007 20:27:34 +0000 Subject: [PATCH] (reb-re-syntax): Fix custom type. --- lisp/ChangeLog | 7 +++++++ lisp/emacs-lisp/re-builder.el | 5 ++--- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 01eccdb411e..e5832df2dd4 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,10 @@ +2007-03-05 Richard Stallman + + * emacs-lisp/re-builder.el (reb-re-syntax): Fix custom type. + + * files.el (find-file-noselect): No error if file no longer exists. + Display a message and avoid other questions. + 2007-03-05 Stefan Monnier * pcomplete.el (pcomplete-show-completions): Improve last change, so diff --git a/lisp/emacs-lisp/re-builder.el b/lisp/emacs-lisp/re-builder.el index 08897bec72c..dc4562ab9bb 100644 --- a/lisp/emacs-lisp/re-builder.el +++ b/lisp/emacs-lisp/re-builder.el @@ -130,14 +130,13 @@ (defcustom reb-re-syntax 'read "*Syntax for the REs in the RE Builder. -Can either be `read', `string', `sregex' or `lisp-re'." +Can either be `read', `string', `sregex', `lisp-re', `rx'." :group 're-builder :type '(choice (const :tag "Read syntax" read) (const :tag "String syntax" string) (const :tag "`sregex' syntax" sregex) (const :tag "`lisp-re' syntax" lisp-re) - (const :tag "`rx' syntax" rx) - (value: string))) + (const :tag "`rx' syntax" rx))) (defcustom reb-auto-match-limit 200 "*Positive integer limiting the matches for RE Builder auto updates. -- 2.39.5