emacs-diffs
[Top][All Lists]
Advanced

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

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


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/lisp/imenu.el [lexbind]
Date: Sat, 04 Sep 2004 05:47:02 -0400

Index: emacs/lisp/imenu.el
diff -c emacs/lisp/imenu.el:1.89.2.3 emacs/lisp/imenu.el:1.89.2.4
*** emacs/lisp/imenu.el:1.89.2.3        Tue Jul  6 09:31:48 2004
--- emacs/lisp/imenu.el Sat Sep  4 09:18:38 2004
***************
*** 1,6 ****
  ;;; imenu.el --- framework for mode-specific buffer indexes
  
! ;; Copyright (C) 1994, 1995, 1996, 1997, 1998, 2003 Free Software Foundation, 
Inc.
  
  ;; Author: Ake Stenhoff <address@hidden>
  ;;         Lars Lindberg <address@hidden>
--- 1,7 ----
  ;;; imenu.el --- framework for mode-specific buffer indexes
  
! ;; Copyright (C) 1994, 1995, 1996, 1997, 1998, 2003, 2004
! ;;           Free Software Foundation, Inc.
  
  ;; Author: Ake Stenhoff <address@hidden>
  ;;         Lars Lindberg <address@hidden>
***************
*** 255,263 ****
  file.
  
  The function should leave point at the place to be connected to the
! index and it should return nil when it doesn't find another index.
! 
! This variable is local in all buffers.")
  ;;;###autoload
  (make-variable-buffer-local 'imenu-prev-index-position-function)
  
--- 256,262 ----
  file.
  
  The function should leave point at the place to be connected to the
! index and it should return nil when it doesn't find another index.")
  ;;;###autoload
  (make-variable-buffer-local 'imenu-prev-index-position-function)
  
***************
*** 267,275 ****
  
  This function is called after `imenu-prev-index-position-function'
  finds a position for an index item, with point at that position.
! It should return the name for that index item.
! 
! This variable is local in all buffers.")
  ;;;###autoload
  (make-variable-buffer-local 'imenu-extract-index-name-function)
  
--- 266,272 ----
  
  This function is called after `imenu-prev-index-position-function'
  finds a position for an index item, with point at that position.
! It should return the name for that index item.")
  ;;;###autoload
  (make-variable-buffer-local 'imenu-extract-index-name-function)
  
***************
*** 283,291 ****
  If nil, comparison is done with `string='.
  Set this to some other function for more advanced comparisons,
  such as \"begins with\" or \"name matches and number of
! arguments match\".
! 
! This variable is local in all buffers.")
  ;;;###autoload
  (make-variable-buffer-local 'imenu-name-lookup-function)
  
--- 280,286 ----
  If nil, comparison is done with `string='.
  Set this to some other function for more advanced comparisons,
  such as \"begins with\" or \"name matches and number of
! arguments match\".")
  ;;;###autoload
  (make-variable-buffer-local 'imenu-name-lookup-function)
  
***************
*** 453,461 ****
    "The buffer index computed for this buffer in Imenu.
  Simple elements in the alist look like (INDEX-NAME . INDEX-POSITION).
  Special elements look like (INDEX-NAME INDEX-POSITION FUNCTION ARGUMENTS...).
! A nested sub-alist element looks like (INDEX-NAME SUB-ALIST).
! 
! This variable is local in all buffers, once set.")
  
  (make-variable-buffer-local 'imenu--index-alist)
  
--- 448,454 ----
    "The buffer index computed for this buffer in Imenu.
  Simple elements in the alist look like (INDEX-NAME . INDEX-POSITION).
  Special elements look like (INDEX-NAME INDEX-POSITION FUNCTION ARGUMENTS...).
! A nested sub-alist element looks like (INDEX-NAME SUB-ALIST).")
  
  (make-variable-buffer-local 'imenu--index-alist)
  




reply via email to

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