summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2010-11-09 23:44:30 -0800
committerGlenn Morris <rgm@gnu.org>2010-11-09 23:44:30 -0800
commitc790cad46de1bd03f650eb25b77378203a4426eb (patch)
tree45b7226af8b84c1d903fde351ae60c75c1d14846 /lisp
parentde4708cbd8ec2185efcad0b20f3e2766f4b95e23 (diff)
downloademacs-c790cad46de1bd03f650eb25b77378203a4426eb.tar.gz
emacs-c790cad46de1bd03f650eb25b77378203a4426eb.tar.bz2
emacs-c790cad46de1bd03f650eb25b77378203a4426eb.zip
wid-edit doc fixes.
* lisp/wid-edit.el (widget-field-use-before-change) (widget-use-overlay-change): Doc fixes.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/wid-edit.el8
2 files changed, 8 insertions, 5 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index f4cf656fbf2..03e7ce86246 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+2010-11-10 Glenn Morris <rgm@gnu.org>
+
+ * wid-edit.el (widget-field-use-before-change)
+ (widget-use-overlay-change): Doc fixes.
+
2010-11-09 Glenn Morris <rgm@gnu.org>
* progmodes/tcl.el (tcl-hairy-scan-for-comment): Doc fix.
diff --git a/lisp/wid-edit.el b/lisp/wid-edit.el
index 0859f8fba56..e75aba22269 100644
--- a/lisp/wid-edit.el
+++ b/lisp/wid-edit.el
@@ -316,9 +316,8 @@ size field.")
(defvar widget-field-use-before-change t
"Non-nil means use `before-change-functions' to track editable fields.
-This enables the use of undo, but doesn't work on Emacs 19.34 and earlier.
-Using before hooks also means that the :notify function can't know the
-new value.")
+This enables the use of undo. Using before hooks also means that
+the :notify function can't know the new value.")
(defun widget-specify-field (widget from to)
"Specify editable button for WIDGET between FROM and TO."
@@ -1053,7 +1052,7 @@ POS defaults to the value of (point)."
(defvar widget-use-overlay-change t
"If non-nil, use overlay change functions to tab around in the buffer.
-This is much faster, but doesn't work reliably on Emacs 19.34.")
+This is much faster.")
(defun widget-move (arg)
"Move point to the ARG next field or button.
@@ -3751,5 +3750,4 @@ example:
(provide 'wid-edit)
-;; arch-tag: a076e75e-18a1-4b46-8be5-3f317bcbc707
;;; wid-edit.el ends here