aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/files.el4
2 files changed, 5 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 21eaa4c15d3..2d4ef5611bb 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,4 +1,6 @@
12010-09-05 Stefan Monnier <monnier@iro.umontreal.ca> 12010-09-05 Alexander Klimov <alserkli@inbox.ru> (tiny change)
2
3 * files.el (directory-abbrev-alist): Use \` as default regexp.
2 4
3 * emacs-lisp/rx.el (rx-any): Don't explode ranges that end in special 5 * emacs-lisp/rx.el (rx-any): Don't explode ranges that end in special
4 chars like - or ] (bug#6984). 6 chars like - or ] (bug#6984).
diff --git a/lisp/files.el b/lisp/files.el
index f6564768ae7..02f5f8fdacf 100644
--- a/lisp/files.el
+++ b/lisp/files.el
@@ -66,9 +66,9 @@ Use this feature when you have directories which you normally refer to
66via absolute symbolic links. Make TO the name of the link, and FROM 66via absolute symbolic links. Make TO the name of the link, and FROM
67the name it is linked to." 67the name it is linked to."
68 :type '(repeat (cons :format "%v" 68 :type '(repeat (cons :format "%v"
69 :value ("" . "") 69 :value ("\\`" . "")
70 (regexp :tag "From") 70 (regexp :tag "From")
71 (regexp :tag "To"))) 71 (string :tag "To")))
72 :group 'abbrev 72 :group 'abbrev
73 :group 'find-file) 73 :group 'find-file)
74 74