]> git.eshelyaron.com Git - emacs.git/commitdiff
(widget-default-complete): Fix typo in doc-string.
authorMartin Rudalics <rudalics@gmx.at>
Sat, 17 Nov 2007 09:48:17 +0000 (09:48 +0000)
committerMartin Rudalics <rudalics@gmx.at>
Sat, 17 Nov 2007 09:48:17 +0000 (09:48 +0000)
lisp/ChangeLog
lisp/wid-edit.el

index 7952b19eade2ad9b1e532fd3085bb25dafc34ca7..285a69d66a57b2333b37a0b7518f410ede2e13ab 100644 (file)
@@ -1,3 +1,9 @@
+2007-11-17  Martin Rudalics  <rudalics@gmx.at>
+
+       * wid-edit.el (widget-default-complete):
+       * progmodes/flymake.el (flymake-goto-file-and-line):
+       Fix typo in (doc-)string.
+
 2007-11-17  Glenn Morris  <rgm@gnu.org>
 
        * emacs-lisp/byte-run.el (declare-function): New macro.
index 49d519a9ea2394806e6c51c1cf16f9eebc7cbc01..48d74b4fb25bcfd161f61ce6e5d48575f6116603 100644 (file)
@@ -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)))