aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Rudalics <[email protected]>2007-11-17 09:48:17 +0000
committerMartin Rudalics <[email protected]>2007-11-17 09:48:17 +0000
commit48b0e82e67abee0b83abdc0469a162ad4f98daaa (patch)
tree93f109c1a646348da444daab53cf6c96ce3918c9
parentcaf790b6e3902030bf38a80b0c26e357d156190a (diff)
(widget-default-complete): Fix typo in doc-string.
-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)))