aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog11
-rw-r--r--lisp/cus-dep.el2
2 files changed, 8 insertions, 5 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 08b08beeefd..1439ff2285a 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12005-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * cus-dep.el (custom-make-dependencies): Typo.
4
12005-11-13 Michael Albinus <michael.albinus@gmx.de> 52005-11-13 Michael Albinus <michael.albinus@gmx.de>
2 6
3 * net/tramp-util.el (top): Fix compilation warning. 7 * net/tramp-util.el (top): Fix compilation warning.
@@ -26,8 +30,7 @@
26 * progmodes/gdb-ui.el (gdb-var-evaluate-expression-handler) 30 * progmodes/gdb-ui.el (gdb-var-evaluate-expression-handler)
27 (gdb-var-create-handler): Handle string expressions properly. 31 (gdb-var-create-handler): Handle string expressions properly.
28 (gdb-var-list-children-regexp, gdb-var-list-children-handler): 32 (gdb-var-list-children-regexp, gdb-var-list-children-handler):
29 Handle string expressions properly. Move "type" field into 33 Handle string expressions properly. Move "type" field into regexp.
30 regexp.
31 34
322005-11-12 Karl Fogel <kfogel@red-bean.com> 352005-11-12 Karl Fogel <kfogel@red-bean.com>
33 36
@@ -68,11 +71,11 @@
68 (apropos-pattern-quoted): New defvar. 71 (apropos-pattern-quoted): New defvar.
69 (apropos-regexp): New defvar, containing the regexp corresponding 72 (apropos-regexp): New defvar, containing the regexp corresponding
70 to apropos-pattern. 73 to apropos-pattern.
71 (apropos-all-words-regexp): Renamed from apropos-all-regexp. 74 (apropos-all-words-regexp): Rename from apropos-all-regexp.
72 (apropos-read-pattern): New defun. Use it to read pattern arg in 75 (apropos-read-pattern): New defun. Use it to read pattern arg in
73 interactive calls; returns list of words for a word list, and 76 interactive calls; returns list of words for a word list, and
74 string for a regexp. 77 string for a regexp.
75 (apropos-parse-pattern): Renamed from apropos-rewrite-regexp. Now 78 (apropos-parse-pattern): Rename from apropos-rewrite-regexp. Now
76 parses a list of words or regexp as returned by apropos-read-pattern. 79 parses a list of words or regexp as returned by apropos-read-pattern.
77 (apropos-calc-scores): Return nil if apropos-regexp doesn't match. 80 (apropos-calc-scores): Return nil if apropos-regexp doesn't match.
78 (apropos-score-doc): Return a very high score if the string 81 (apropos-score-doc): Return a very high score if the string
diff --git a/lisp/cus-dep.el b/lisp/cus-dep.el
index af21c2ce759..985a428384e 100644
--- a/lisp/cus-dep.el
+++ b/lisp/cus-dep.el
@@ -99,7 +99,7 @@ Usage: emacs -batch -l ./cus-dep.el -f custom-make-dependencies DIRS"
99 (insert "(put '" (symbol-name symbol) 99 (insert "(put '" (symbol-name symbol)
100 " 'custom-loads '") 100 " 'custom-loads '")
101 (prin1 found (current-buffer)) 101 (prin1 found (current-buffer))
102 (insert "))\n")))))) 102 (insert ")\n"))))))
103 (insert "\ 103 (insert "\
104;; These are for handling :version. We need to have a minimum of 104;; These are for handling :version. We need to have a minimum of
105;; information so `customize-changed-options' could do its job. 105;; information so `customize-changed-options' could do its job.