]> code.delx.au - gnu-emacs/blobdiff - lisp/frame.el
(log-view-goto-rev): New function for the new VC.
[gnu-emacs] / lisp / frame.el
index e5b9a54579b93c135d979f5034f655fd19e9318c..5b7709b69b489a14b102535c9d5e3ebed0049467 100644 (file)
@@ -574,13 +574,17 @@ A negative ARG moves in the opposite order."
       (while (not (eq (frame-visible-p frame) t))
        (setq frame (previous-frame frame)))
       (setq arg (1+ arg)))
-    (raise-frame frame)
     (select-frame frame)
+    (raise-frame frame)
     ;; Ensure, if possible, that frame gets input focus.
-    (if (eq window-system 'w32)
-       (w32-focus-frame frame)
-      (when focus-follows-mouse
-       (set-mouse-position (selected-frame) (1- (frame-width)) 0)))))
+    (when (eq window-system 'w32)
+      (w32-focus-frame frame))
+    (cond (focus-follows-mouse
+          (unless (eq window-system 'w32)
+            (set-mouse-position (selected-frame) (1- (frame-width)) 0)))
+         (t
+          (when (eq window-system 'x)
+            (x-focus-frame frame))))))
 
 (defun make-frame-names-alist ()
   (let* ((current-frame (selected-frame))
@@ -991,6 +995,22 @@ FRAME nil or omitted means delete all frames except the selected frame."
   :group 'font-lock)
 
 
+\f
+;;; Scrolling
+
+(defgroup scrolling nil
+  "Scrolling windows."
+  :version "21.1"
+  :group 'frames)
+
+(defcustom automatic-hscrolling t
+  "*Allow or disallow autmatic scrolling windows horizontally.
+If non-nil, windows are automatically scrolled horizontally to make
+point visible."
+  :version "21.1"
+  :type 'boolean
+  :group 'scrolling)
+
 \f
 ;;; Blinking cursor
 
@@ -1046,7 +1066,8 @@ window blinks."
                (run-with-idle-timer blink-cursor-delay
                                     blink-cursor-delay
                                     'blink-cursor-start))
-         (setq blink-cursor-mode t)))))
+         (setq blink-cursor-mode t))
+      (internal-show-cursor nil t))))
 
 (defcustom blink-cursor (not (eq system-type 'ms-dos))
   "*Non-nil means blinking cursor mode is active."
@@ -1099,7 +1120,7 @@ itself as a pre-command hook."
 (defcustom busy-cursor-delay-seconds 1
   "*Seconds to wait before displaying a busy-cursor."
   :tag "Busy-cursor delay"
-  :type 'integer
+  :type 'number
   :group 'cursor
   :get #'(lambda (symbol) busy-cursor-delay)
   :set #'(lambda (symbol value)