summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog13
-rw-r--r--lisp/mouse.el2
2 files changed, 14 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 51c23f6fe8c..c39dc035b63 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
+2000-07-09 Stefan Monnier <monnier@cs.yale.edu>
+
+ * mouse.el (mouse-drag-region): Use functionp rather than fboundp.
+
2000-07-07 Gerd Moellmann <gerd@gnu.org>
* bindings.el: Bind ´[delete]' to delete-char.
@@ -32,6 +36,15 @@
* rmail.el (mail-unsent-separator): Changed "the" to "\\w+", as
exim can use "your message" instead of "the message".
+2000-07-06 Stefan Monnier <monnier@cs.yale.edu>
+
+ * facemenu.el: Docstrings fixes.
+ (facemenu-get-face): Don't use internal-find-face.
+ (facemenu-iterate): Rename arg to match the docstring.
+
+ * newcomment.el (uncomment-region): Be more careful when skipping
+ backwards over `=' not to bump into BOBP.
+
2000-07-05 Michael Kifer <kifer@cs.sunysb.edu>
* ediff-diff.el (ediff-wordify): Use syntax table.
diff --git a/lisp/mouse.el b/lisp/mouse.el
index c67d22c158e..e54ecd0cf80 100644
--- a/lisp/mouse.el
+++ b/lisp/mouse.el
@@ -677,7 +677,7 @@ remains active. Otherwise, it remains until the next input event."
(mouse-set-region-1))))
(delete-overlay mouse-drag-overlay)
;; Run the binding of the terminating up-event.
- (when (and (fboundp fun)
+ (when (and (functionp fun)
(= start-hscroll (window-hscroll start-window)))
(setq unread-command-events
(cons event unread-command-events)))))