emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/fringe.el


From: Kim F . Storm
Subject: [Emacs-diffs] Changes to emacs/lisp/fringe.el
Date: Sat, 27 Nov 2004 20:18:20 -0500

Index: emacs/lisp/fringe.el
diff -c emacs/lisp/fringe.el:1.14 emacs/lisp/fringe.el:1.15
*** emacs/lisp/fringe.el:1.14   Sun Oct 17 06:49:55 2004
--- emacs/lisp/fringe.el        Sun Nov 28 00:56:28 2004
***************
*** 35,40 ****
--- 35,45 ----
  
  ;;; Code:
  
+ (defgroup fringe nil
+   "Window fringes."
+   :version "21.4"
+   :group 'frames)
+ 
  ;; Standard fringe bitmaps
  
  (defmacro fringe-bitmap-p (symbol)
***************
*** 156,162 ****
                 (cons :tag "Different left/right sizes"
                       (integer :tag "Left width")
                       (integer :tag "Right width")))
!   :group 'frames
    :require 'fringe
    :initialize 'fringe-mode-initialize
    :set 'set-fringe-mode-1)
--- 161,167 ----
                 (cons :tag "Different left/right sizes"
                       (integer :tag "Left width")
                       (integer :tag "Right width")))
!   :group 'fringe
    :require 'fringe
    :initialize 'fringe-mode-initialize
    :set 'set-fringe-mode-1)
***************
*** 252,257 ****
--- 257,295 ----
               0)
             (float (frame-char-width))))
  
+ 
+ ;;;###autoload
+ (defcustom fringe-indicators nil
+   "Visually indicate buffer boundaries and scrolling.
+ Setting this variable, changes `default-indicate-buffer-boundaries'."
+   :type '(choice (const :tag "No indicators" nil)
+                (const :tag "On left" left)
+                (const :tag "On right" right)
+                (const :tag "Opposite, no arrows" box)
+                (const :tag "Opposite, arrows right" mixed)
+                (const :tag "Empty lines" empty))
+   :group 'fringe
+   :require 'fringe
+   :set 'set-fringe-indicators-1)
+ 
+ (defun set-fringe-indicators-1 (ignore value)
+   "Set fringe indicators according to VALUE.
+ This is usually invoked when setting `fringe-indicators' via customize."
+   (setq fringe-indicators value)
+   (setq default-indicate-empty-lines nil)
+   (setq default-indicate-buffer-boundaries
+       (cond
+        ((memq value '(left right t))
+         value)
+        ((eq value 'box)
+         '((top . left) (bottom . right)))
+        ((eq value 'mixed)
+         '((top . left) (t . right)))
+        ((eq value 'empty)
+         (setq default-indicate-empty-lines t)
+         nil)
+        (t nil))))
+ 
  (provide 'fringe)
  
  ;;; arch-tag: 6611ef60-0869-47ed-8b93-587ee7d3ff5d




reply via email to

[Prev in Thread] Current Thread [Next in Thread]