]> git.eshelyaron.com Git - emacs.git/commitdiff
(mouse-drag-region): Use functionp rather than fboundp.
authorStefan Monnier <monnier@iro.umontreal.ca>
Sun, 9 Jul 2000 18:36:21 +0000 (18:36 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Sun, 9 Jul 2000 18:36:21 +0000 (18:36 +0000)
lisp/ChangeLog
lisp/mouse.el

index 51c23f6fe8cc223ffdbeb4c0c0885ebb348a7ef1..c39dc035b635117f8aaba6e918b01f4f5c816dce 100644 (file)
@@ -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.
        * 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.
index c67d22c158e7e30008330e38c9b0d0e79a6cb22c..e54ecd0cf803823ec00fda20f60d5f1eb808011a 100644 (file)
@@ -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)))))