aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog6
-rw-r--r--lisp/wid-edit.el2
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 7952b19ead..285a69d66a 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,9 @@
+2007-11-17 Martin Rudalics <[email protected]>
+
+ * wid-edit.el (widget-default-complete):
+ * progmodes/flymake.el (flymake-goto-file-and-line):
+ Fix typo in (doc-)string.
+
2007-11-17 Glenn Morris <[email protected]>
* emacs-lisp/byte-run.el (declare-function): New macro.
diff --git a/lisp/wid-edit.el b/lisp/wid-edit.el
index 49d519a9ea..48d74b4fb2 100644
--- a/lisp/wid-edit.el
+++ b/lisp/wid-edit.el
@@ -1450,7 +1450,7 @@ The value of the :type attribute should be an unconverted widget type."
(defun widget-default-complete (widget)
"Call the value of the :complete-function property of WIDGET.
-If that does not exists, call the value of `widget-complete-field'."
+If that does not exist, call the value of `widget-complete-field'."
(call-interactively (or (widget-get widget :complete-function)
widget-complete-field)))