]> git.eshelyaron.com Git - emacs.git/commitdiff
(reb-re-syntax): Fix custom type.
authorRichard M. Stallman <rms@gnu.org>
Mon, 5 Mar 2007 20:27:34 +0000 (20:27 +0000)
committerRichard M. Stallman <rms@gnu.org>
Mon, 5 Mar 2007 20:27:34 +0000 (20:27 +0000)
lisp/ChangeLog
lisp/emacs-lisp/re-builder.el

index 01eccdb411edb0552fef700caec1db904937c974..e5832df2dd4b9dcc9ab23268e540a71c55237207 100644 (file)
@@ -1,3 +1,10 @@
+2007-03-05  Richard Stallman  <rms@gnu.org>
+
+       * 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  <monnier@iro.umontreal.ca>
 
        * pcomplete.el (pcomplete-show-completions): Improve last change, so
index 08897bec72c6dded8bde3c9e5e407df669f02985..dc4562ab9bbd6295b6bc457e953e57d7f8cdd3ec 100644 (file)
 
 (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.