Change file name EBROWSE' to
BROWSE'.
This commit is contained in:
parent
063381ab4a
commit
183c2d4259
1 changed files with 9 additions and 9 deletions
|
@ -53,7 +53,7 @@
|
|||
(defcustom ebrowse-search-path nil
|
||||
"*List of directories to search for source files in a class tree.
|
||||
Elements should be directory names; nil as an element means to try
|
||||
to find source files relative to the location of the EBROWSE file loaded."
|
||||
to find source files relative to the location of the BROWSE file loaded."
|
||||
:group 'ebrowse
|
||||
:type '(repeat (choice (const :tag "Default" nil)
|
||||
(string :tag "Directory"))))
|
||||
|
@ -364,12 +364,12 @@ otherwise use the current frame's width."
|
|||
;;; Structure definitions
|
||||
|
||||
(defstruct (ebrowse-hs (:type vector) :named)
|
||||
"Header structure found at the head of EBROWSE files."
|
||||
"Header structure found at the head of BROWSE files."
|
||||
;; A version string that is compared against the version number of
|
||||
;; the Lisp package when the file is loaded. This is done to
|
||||
;; detect file format changes.
|
||||
version
|
||||
;; Command line options used for producing the EBROWSE file.
|
||||
;; Command line options used for producing the BROWSE file.
|
||||
command-line-options
|
||||
;; The following slot is currently not used. It's kept to keep
|
||||
;; the file format compatible.
|
||||
|
@ -382,7 +382,7 @@ otherwise use the current frame's width."
|
|||
|
||||
(defstruct (ebrowse-ts (:type vector) :named)
|
||||
"Tree structure.
|
||||
Following the header structure, an EBROWSE file contains a number
|
||||
Following the header structure, an BROWSE file contains a number
|
||||
of `ebrowse-ts' structures, each one describing one root class of
|
||||
the class hierarchy with all its subclasses."
|
||||
;; A `ebrowse-cs' structure describing the root class.
|
||||
|
@ -508,7 +508,7 @@ members."
|
|||
|
||||
|
||||
(defconst ebrowse-version-string "ebrowse 5.0"
|
||||
"Version string expected in EBROWSE files.")
|
||||
"Version string expected in BROWSE files.")
|
||||
|
||||
|
||||
(defconst ebrowse-globals-name "*Globals*"
|
||||
|
@ -544,7 +544,7 @@ Buffer-local in Ebrowse buffers.")
|
|||
|
||||
|
||||
(defvar ebrowse--tags-file-name nil
|
||||
"File from which EBROWSE file was loaded.
|
||||
"File from which BROWSE file was loaded.
|
||||
Buffer-local in Ebrowse buffers.")
|
||||
|
||||
|
||||
|
@ -1663,7 +1663,7 @@ if MEMBER-OR-CLASS is an `ebrowse-ms'.
|
|||
FILE is the file to search the member in.
|
||||
FILE is not taken out of STRUC here because the filename in STRUC
|
||||
may be nil in which case the filename of the class description is used.
|
||||
TAGS-FILE-NAME is the name of the EBROWSE file from which the
|
||||
TAGS-FILE-NAME is the name of the BROWSE file from which the
|
||||
tree was loaded.
|
||||
If VIEW is non-nil, view file else find the file.
|
||||
WHERE is either `other-window', `other-frame' or `this-window' and
|
||||
|
@ -1698,7 +1698,7 @@ specifies where to find/view the result."
|
|||
"Generate a suitable regular expression for a member or class NAME.
|
||||
This is `regexp-quote' for most symbols, except for operator names
|
||||
which may contain whitespace. For these symbols, replace white
|
||||
space in the symbol name (generated by EBROWSE) with a regular
|
||||
space in the symbol name (generated by BROWSE) with a regular
|
||||
expression matching any number of whitespace characters."
|
||||
(loop with regexp = (regexp-quote name)
|
||||
with start = 0
|
||||
|
@ -2579,7 +2579,7 @@ DEFINITION non-nil means find the definition, otherwise find the
|
|||
declaration.
|
||||
INFO is a list (TREE ACCESSOR MEMBER) describing the member to
|
||||
search.
|
||||
TAGS-FILE-NAME is the file name of the EBROWSE file."
|
||||
TAGS-FILE-NAME is the file name of the BROWSE file."
|
||||
(unless header
|
||||
(setq header ebrowse--header))
|
||||
(unless tags-file-name
|
||||
|
|
Loading…
Add table
Reference in a new issue