]> git.eshelyaron.com Git - emacs.git/commitdiff
wid-edit doc fixes.
authorGlenn Morris <rgm@gnu.org>
Wed, 10 Nov 2010 07:44:30 +0000 (23:44 -0800)
committerGlenn Morris <rgm@gnu.org>
Wed, 10 Nov 2010 07:44:30 +0000 (23:44 -0800)
* lisp/wid-edit.el (widget-field-use-before-change)
(widget-use-overlay-change): Doc fixes.

lisp/ChangeLog
lisp/wid-edit.el

index f4cf656fbf2e55119a3cffd43e4b4b58a34270e4..03e7ce86246f23e62bf7085af17889b3d8a9ca25 100644 (file)
@@ -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.
index 0859f8fba5603f3b5bbd1e9c087a879098b4282c..e75aba222690d51fa4129f54d1aec22b501a9395 100644 (file)
@@ -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