(widget-default-complete): Fix typo in doc-string.

This commit is contained in:
Martin Rudalics 2007-11-17 09:48:17 +00:00
parent caf790b6e3
commit 48b0e82e67
2 changed files with 7 additions and 1 deletions

View 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.

View 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)))