]> code.delx.au - gnu-emacs/commitdiff
(Electric-pop-up-window): For the `one-window' case,
authorThien-Thi Nguyen <ttn@gnuvola.org>
Sat, 13 Sep 2003 13:53:30 +0000 (13:53 +0000)
committerThien-Thi Nguyen <ttn@gnuvola.org>
Sat, 13 Sep 2003 13:53:30 +0000 (13:53 +0000)
no longer disconcertingly move point in the original buffer.

lisp/ChangeLog
lisp/electric.el

index e25b3873a74909ad9346f9521e3052df21e323a2..b993f94fb6b42cefdbaf9dc5fc69ab30ce00d505 100644 (file)
@@ -1,3 +1,8 @@
+2003-09-13  Thien-Thi Nguyen  <ttn@gnu.org>
+
+       * electric.el (Electric-pop-up-window): For the `one-window' case,
+       no longer disconcertingly move point in the original buffer.
+
 2003-09-13  Kevin Rodgers  <ihs_4664@yahoo.com> (tiny change)
 
        * hl-line.el: Documentation (comments-only) fix.
 
 2003-08-29  Richard M. Stallman  <rms@gnu.org>
 
-       * mail/sendmail.el (sendmail-sync-aliases, mail-setup): 
+       * mail/sendmail.el (sendmail-sync-aliases, mail-setup):
        Do nothing with mail-personal-alias-file if it is nil.
 
        * mail/mailabbrev.el (mail-abbrevs-sync-aliases):
 
        * term.el (term-exec-1): Bind coding-system-for-read.
 
-       * dired.el (dired-mouse-find-file-other-window): 
+       * dired.el (dired-mouse-find-file-other-window):
        Use dired-view-command-alist here, as in dired-view-file.
        (dired-view-command-alist): Use %s to substitute file name.
        Handle .ps_pages, .eps, .jpg, .gif, .png.
        * calendar/diary-lib.el (simple-diary-display, make-diary-entry):
        Allow the diary to pop up a new frame, if needed.
 
-       * mail/sendmail.el (mail-specify-envelope-from): Doc change.    
+       * mail/sendmail.el (mail-specify-envelope-from): Doc change.
        * mail/smtpmail.el (smtpmail-mail-address): Doc change.
        (smtpmail-send-it): Make treatment of envelope-from consistent with
        sendmail.el.
        (sh-add-completer): Fix nil branch of case statement.
 
 2003-08-24  Masatake YAMATO  <jet@gyve.org>
-       
+
        * progmodes/ld-script.el: New file.
 
 2003-08-23  Markus Rost  <rost@math.ohio-state.edu>
 
 2003-08-23  Andre Spiegel  <spiegel@gnu.org>
 
-       * vc-hooks.el (vc-ignore-vc-files, vc-master-templates): Better 
+       * vc-hooks.el (vc-ignore-vc-files, vc-master-templates): Better
        explain obsolescence, and what to use instead.
 
 2003-08-23  Masatake YAMATO  <jet@gyve.org>
 
 2003-08-20  Dave Love  <fx@gnu.org>
 
-       * international/mule.el (make-coding-system) 
+       * international/mule.el (make-coding-system)
        (set-buffer-file-coding-system): Doc fix.
 
        * emacs-lisp/lisp-mode.el (common-lisp-mode): New.
index 776a99035cc916accda95aa3668a7bfca7040cab..6df74eac6efac747f8a6f583447d3050f2645c1a 100644 (file)
       (cond ((and (eq (window-buffer win) buf))
             (select-window win))
            (one-window
-            (goto-char (window-start win))
             (pop-to-buffer buffer)
             (setq win (selected-window))
             (enlarge-window (- target-height (window-height win))))