aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2002-07-10 09:26:03 +0000
committerJuanma Barranquero2002-07-10 09:26:03 +0000
commit85671b819bce0fe645970b95b439e76e150555d9 (patch)
tree3e1810124fa2d4b1212436b4fba8d18b5ea50254
parent331379bfa7599889e6fab3186607daaf8673cf72 (diff)
downloademacs-85671b819bce0fe645970b95b439e76e150555d9.tar.gz
emacs-85671b819bce0fe645970b95b439e76e150555d9.zip
(speedbar-tag-hierarchy-method): Fix typos.
(speedbar-vc-do-check): Likewise. (speedbar-obj-do-check): Likewise. (speedbar-mouse-hscroll): Likewise. (speedbar-file-lists): Likewise.
-rw-r--r--lisp/speedbar.el12
1 files changed, 6 insertions, 6 deletions
diff --git a/lisp/speedbar.el b/lisp/speedbar.el
index 7cb86a58c9a..4d33cb78b9c 100644
--- a/lisp/speedbar.el
+++ b/lisp/speedbar.el
@@ -407,14 +407,14 @@ tags to insert. It will then create the speedbar buttons.")
407 "*List of hooks which speedbar will use to organize tags into groups. 407 "*List of hooks which speedbar will use to organize tags into groups.
408Groups are defined as expandable meta-tags. Imenu supports 408Groups are defined as expandable meta-tags. Imenu supports
409such things in some languages, such as separating variables from 409such things in some languages, such as separating variables from
410functions. Each hook takes one argument LST, and may destructivly 410functions. Each hook takes one argument LST, and may destructively
411create a new list of the same form. LST is a list of elements of the 411create a new list of the same form. LST is a list of elements of the
412form: 412form:
413 (ELT1 ELT2 ... ELTn) 413 (ELT1 ELT2 ... ELTn)
414where each ELT is of the form 414where each ELT is of the form
415 (TAG-NAME-STRING . NUMBER-OR-MARKER) 415 (TAG-NAME-STRING . NUMBER-OR-MARKER)
416or 416or
417 (GROUP-NAME-STRING ELT1 ELR2... ELTn)" 417 (GROUP-NAME-STRING ELT1 ELT2... ELTn)"
418 :group 'speedbar 418 :group 'speedbar
419 :type 'hook 419 :type 'hook
420 :options '(speedbar-sort-tag-hierarchy 420 :options '(speedbar-sort-tag-hierarchy
@@ -534,7 +534,7 @@ verbosity."
534 534
535(defcustom speedbar-vc-do-check t 535(defcustom speedbar-vc-do-check t
536 "*Non-nil check all files in speedbar to see if they have been checked out. 536 "*Non-nil check all files in speedbar to see if they have been checked out.
537Any file checked out is marked with `speedbar-vc-indicator'" 537Any file checked out is marked with `speedbar-vc-indicator'."
538 :group 'speedbar-vc 538 :group 'speedbar-vc
539 :type 'boolean) 539 :type 'boolean)
540 540
@@ -563,7 +563,7 @@ current file, and the FILENAME of the file being checked."
563(defcustom speedbar-obj-do-check t 563(defcustom speedbar-obj-do-check t
564 "*Non-nil check all files in speedbar to see if they have an object file. 564 "*Non-nil check all files in speedbar to see if they have an object file.
565Any file checked out is marked with `speedbar-obj-indicator', and the 565Any file checked out is marked with `speedbar-obj-indicator', and the
566marking is based on `speedbar-obj-alist'" 566marking is based on `speedbar-obj-alist'."
567 :group 'speedbar-vc 567 :group 'speedbar-vc
568 :type 'boolean) 568 :type 'boolean)
569 569
@@ -1454,7 +1454,7 @@ and the existence of packages."
1454(defun speedbar-mouse-hscroll (e) 1454(defun speedbar-mouse-hscroll (e)
1455 "Read a mouse event E from the mode line, and horizontally scroll. 1455 "Read a mouse event E from the mode line, and horizontally scroll.
1456If the mouse is being clicked on the far left, or far right of the 1456If the mouse is being clicked on the far left, or far right of the
1457mode-line. This is only useful for non-XEmacs" 1457mode-line. This is only useful for non-XEmacs."
1458 (interactive "e") 1458 (interactive "e")
1459 (let* ((xp (car (nth 2 (car (cdr e))))) 1459 (let* ((xp (car (nth 2 (car (cdr e)))))
1460 (cpw (/ (frame-pixel-width) 1460 (cpw (/ (frame-pixel-width)
@@ -2177,7 +2177,7 @@ of the special mode functions."
2177The car is the list of directories, the cdr is list of files not 2177The car is the list of directories, the cdr is list of files not
2178matching ignored headers. Cache any directory files found in 2178matching ignored headers. Cache any directory files found in
2179`speedbar-directory-contents-alist' and use that cache before scanning 2179`speedbar-directory-contents-alist' and use that cache before scanning
2180the file-system" 2180the file-system."
2181 (setq directory (expand-file-name directory)) 2181 (setq directory (expand-file-name directory))
2182 ;; If in powerclick mode, then the directory we are getting 2182 ;; If in powerclick mode, then the directory we are getting
2183 ;; should be rescanned. 2183 ;; should be rescanned.