emacs-diffs
[Top][All Lists]
Advanced

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

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


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/lisp/emacs-lisp/ewoc.el
Date: Fri, 04 Apr 2003 01:21:59 -0500

Index: emacs/lisp/emacs-lisp/ewoc.el
diff -c emacs/lisp/emacs-lisp/ewoc.el:1.10 emacs/lisp/emacs-lisp/ewoc.el:1.11
*** emacs/lisp/emacs-lisp/ewoc.el:1.10  Thu Sep 19 01:11:48 2002
--- emacs/lisp/emacs-lisp/ewoc.el       Tue Feb  4 07:53:34 2003
***************
*** 92,98 ****
  
  ;; In the mean time `grep '^(.*ewoc-[^-]' emacs-lisp/ewoc.el' can help
  ;; you find all the exported functions:
! ;; 
  ;; (defun ewoc-create (pretty-printer &optional header footer)
  ;; (defalias 'ewoc-data 'ewoc--node-data)
  ;; (defun ewoc-location (node)
--- 92,98 ----
  
  ;; In the mean time `grep '^(.*ewoc-[^-]' emacs-lisp/ewoc.el' can help
  ;; you find all the exported functions:
! ;;
  ;; (defun ewoc-create (pretty-printer &optional header footer)
  ;; (defalias 'ewoc-data 'ewoc--node-data)
  ;; (defun ewoc-location (node)
***************
*** 394,401 ****
  If MAP-FUNCTION returns non-nil the element will be refreshed (its
  pretty-printer will be called once again).
  
! Note that the buffer for EWOC will be current buffer when MAP-FUNCTION 
! is called.  MAP-FUNCTION must restore the current buffer to BUFFER before 
  it returns, if it changes it.
  
  If more than two arguments are given, the remaining
--- 394,401 ----
  If MAP-FUNCTION returns non-nil the element will be refreshed (its
  pretty-printer will be called once again).
  
! Note that the buffer for EWOC will be current buffer when MAP-FUNCTION
! is called.  MAP-FUNCTION must restore the current buffer to BUFFER before
  it returns, if it changes it.
  
  If more than two arguments are given, the remaining
***************
*** 410,416 ****
  
  (defun ewoc-filter (ewoc predicate &rest args)
    "Remove all elements in EWOC for which PREDICATE returns nil.
! Note that the buffer for EWOC will be current-buffer when PREDICATE 
  is called. PREDICATE must restore the current buffer before it returns
  if it changes it.
  The PREDICATE is called with the element as its first argument. If any
--- 410,416 ----
  
  (defun ewoc-filter (ewoc predicate &rest args)
    "Remove all elements in EWOC for which PREDICATE returns nil.
! Note that the buffer for EWOC will be current-buffer when PREDICATE
  is called. PREDICATE must restore the current buffer before it returns
  if it changes it.
  The PREDICATE is called with the element as its first argument. If any
***************
*** 478,484 ****
        ;; best-guess is now a "best guess".
        ;; Find the correct node. First determine in which direction
        ;; it lies, and then move in that direction until it is found.
!     
        (cond
         ;; Is pos after the guess?
         ((>= pos
--- 478,484 ----
        ;; best-guess is now a "best guess".
        ;; Find the correct node. First determine in which direction
        ;; it lies, and then move in that direction until it is found.
! 
        (cond
         ;; Is pos after the guess?
         ((>= pos




reply via email to

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