aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes/ebrowse.el
diff options
context:
space:
mode:
authorGerd Moellmann <[email protected]>2000-05-04 21:51:29 +0000
committerGerd Moellmann <[email protected]>2000-05-04 21:51:29 +0000
commit183c2d4259578731a180ba5ce0f6c16b8350354d (patch)
tree17b35f92016a31ab7604a6312705160e2b9c606e /lisp/progmodes/ebrowse.el
parent063381ab4a391cfd46dcdce6f253e78f1df1b63b (diff)
Change file name `EBROWSE' to `BROWSE'.
Diffstat (limited to 'lisp/progmodes/ebrowse.el')
-rw-r--r--lisp/progmodes/ebrowse.el18
1 files changed, 9 insertions, 9 deletions
diff --git a/lisp/progmodes/ebrowse.el b/lisp/progmodes/ebrowse.el
index 5669b25a3d..02ac7037ba 100644
--- a/lisp/progmodes/ebrowse.el
+++ b/lisp/progmodes/ebrowse.el
@@ -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