]> git.eshelyaron.com Git - emacs.git/commitdiff
(comint-insert-input): Use `posn-set-point' instead of
authorJohn Paul Wallington <jpw@pobox.com>
Thu, 17 Nov 2005 23:02:34 +0000 (23:02 +0000)
committerJohn Paul Wallington <jpw@pobox.com>
Thu, 17 Nov 2005 23:02:34 +0000 (23:02 +0000)
`mouse-set-point' because the latter is not fbound when configured
without X.

lisp/ChangeLog
lisp/comint.el

index 799b426e11b99dc83e5ff9b9aa4b989114f72739..ebcb76d472f5d15fca15475febebde7ce6e39841 100644 (file)
@@ -1,3 +1,11 @@
+2005-11-17  John Paul Wallington  <jpw@pobox.com>
+
+       * ibuf-ext.el (ibuffer-interactive-filter-by-mode):
+       Use `posn-set-point' instead of `mouse-set-point' because the
+       latter is not fbound when configured without X.
+
+       * comint.el (comint-insert-input): Likewise.
+
 2005-11-17  Chong Yidong  <cyd@stupidchicken.com>
 
        * simple.el (hard-newline): New variable.
 
        * textmodes/org.el (org-export-as-html): Remove bogus (debug) form.
 
+2005-11-07  John Paul Wallington  <jpw@gnu.org>
+
+       * ibuffer.el (ibuffer): Search iconified frames too when
+       getting Ibuffer buffer's window.
+
 2005-11-06  Richard M. Stallman  <rms@gnu.org>
 
        * progmodes/compile.el (compilation-internal-error-properties):
index 3d9da2b8ea2b787fc1eeedcfc855a1ddd96af811..6676e83673541388bf09be47ab539659fd87b53a 100644 (file)
@@ -799,7 +799,7 @@ buffer.  The hook `comint-exec-hook' is run after each exec."
   ;; for events without parameters.
   (interactive (list last-input-event))
   (let ((pos (point)))
-    (if event (mouse-set-point event))
+    (if event (posn-set-point (event-end event)))
     (if (not (eq (get-char-property (point) 'field) 'input))
        ;; No input at POS, fall back to the global definition.
        (let* ((keys (this-command-keys))