emacs-diffs
[Top][All Lists]
Advanced

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

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


From: Pavel Janík
Subject: [Emacs-diffs] Changes to emacs/lisp/foldout.el
Date: Thu, 20 Dec 2001 13:39:56 -0500

Index: emacs/lisp/foldout.el
diff -c emacs/lisp/foldout.el:1.9 emacs/lisp/foldout.el:1.10
*** emacs/lisp/foldout.el:1.9   Mon Jul 16 08:22:58 2001
--- emacs/lisp/foldout.el       Thu Dec 20 13:39:56 2001
***************
*** 216,222 ****
  
  (defconst foldout-fold-list nil
    "List of start and end markers for the folds currently entered.
! An end marker of NIL means the fold ends after (point-max).")
  (make-variable-buffer-local 'foldout-fold-list)
  
  (defconst foldout-modeline-string nil
--- 216,222 ----
  
  (defconst foldout-fold-list nil
    "List of start and end markers for the folds currently entered.
! An end marker of nil means the fold ends after (point-max).")
  (make-variable-buffer-local 'foldout-fold-list)
  
  (defconst foldout-modeline-string nil
***************
*** 269,275 ****
           ;; I need a marker that will follow the end of the region even when
           ;; text is inserted right at the end.  Text gets inserted *after*
           ;; markers, so I need it at end+1.  Unfortunately I can't set a
!          ;; marker at (point-max)+1, so I use NIL to mean the region ends at
           ;; (point-max).
           (end-marker (if (eobp) nil (set-marker (make-marker) (1+ end))))
           )
--- 269,275 ----
           ;; I need a marker that will follow the end of the region even when
           ;; text is inserted right at the end.  Text gets inserted *after*
           ;; markers, so I need it at end+1.  Unfortunately I can't set a
!          ;; marker at (point-max)+1, so I use nil to mean the region ends at
           ;; (point-max).
           (end-marker (if (eobp) nil (set-marker (make-marker) (1+ end))))
           )
***************
*** 517,523 ****
  ;;; Keymaps:
  
  (defvar foldout-inhibit-key-bindings nil
!   "Set non-NIL before loading foldout to inhibit key bindings.")
  
  (defvar foldout-mouse-modifiers '(meta control)
    "List of modifier keys to apply to foldout's mouse events.
--- 517,523 ----
  ;;; Keymaps:
  
  (defvar foldout-inhibit-key-bindings nil
!   "Set non-nil before loading foldout to inhibit key bindings.")
  
  (defvar foldout-mouse-modifiers '(meta control)
    "List of modifier keys to apply to foldout's mouse events.



reply via email to

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