emacs-diffs
[Top][All Lists]
Advanced

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

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


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/lisp/format.el [lexbind]
Date: Tue, 06 Jul 2004 05:56:23 -0400

Index: emacs/lisp/format.el
diff -c emacs/lisp/format.el:1.37.2.5 emacs/lisp/format.el:1.37.2.6
*** emacs/lisp/format.el:1.37.2.5       Sat Apr 10 06:15:00 2004
--- emacs/lisp/format.el        Tue Jul  6 09:47:52 2004
***************
*** 750,762 ****
            (message "Unknown annotations: %s" unknown-ans))))))
  
  (defun format-subtract-regions (minu subtra)
!   "Remove from the regions in MINUend the regions in SUBTRAhend.
  A region is a dotted pair (FROM . TO).  Both parameters are lists of
  regions.  Each list must contain nonoverlapping, noncontiguous
  regions, in descending order.  The result is also nonoverlapping,
  noncontiguous, and in descending order.  The first element of MINUEND
  can have a cdr of nil, indicating that the end of that region is not
! yet known."
    (let* ((minuend (copy-alist minu))
         (subtrahend (copy-alist subtra))
         (m (car minuend))
--- 750,764 ----
            (message "Unknown annotations: %s" unknown-ans))))))
  
  (defun format-subtract-regions (minu subtra)
!   "Remove from the regions in MINUEND the regions in SUBTRAHEND.
  A region is a dotted pair (FROM . TO).  Both parameters are lists of
  regions.  Each list must contain nonoverlapping, noncontiguous
  regions, in descending order.  The result is also nonoverlapping,
  noncontiguous, and in descending order.  The first element of MINUEND
  can have a cdr of nil, indicating that the end of that region is not
! yet known.
! 
! \(fn MINUEND SUBTRAHEND)"
    (let* ((minuend (copy-alist minu))
         (subtrahend (copy-alist subtra))
         (m (car minuend))
***************
*** 809,816 ****
  Inserts each element of the given LIST of buffer annotations at its
  appropriate place.  Use second arg OFFSET if the annotations' locations are
  not relative to the beginning of the buffer: annotations will be inserted
! at their location-OFFSET+1 \(ie, the offset is treated as the character number
! of the first character in the buffer)."
    (if (not offset)
        (setq offset 0)
      (setq offset (1- offset)))
--- 811,818 ----
  Inserts each element of the given LIST of buffer annotations at its
  appropriate place.  Use second arg OFFSET if the annotations' locations are
  not relative to the beginning of the buffer: annotations will be inserted
! at their location-OFFSET+1 \(ie, the offset is treated as the position of
! the first character in the buffer)."
    (if (not offset)
        (setq offset 0)
      (setq offset (1- offset)))
***************
*** 920,926 ****
  
  (defun format-annotate-location (loc all ignore translations)
    "Return annotation(s) needed at location LOC.
! This includes any properties that change between LOC-1 and LOC.
  If ALL is true, don't look at previous location, but generate annotations for
  all non-nil properties.
  Third argument IGNORE is a list of text-properties not to consider.
--- 922,928 ----
  
  (defun format-annotate-location (loc all ignore translations)
    "Return annotation(s) needed at location LOC.
! This includes any properties that change between LOC - 1 and LOC.
  If ALL is true, don't look at previous location, but generate annotations for
  all non-nil properties.
  Third argument IGNORE is a list of text-properties not to consider.




reply via email to

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