aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorJuanma Barranquero <[email protected]>2007-02-19 13:39:33 +0000
committerJuanma Barranquero <[email protected]>2007-02-19 13:39:33 +0000
commitb7f61dfee8849f3057903050e85f3f372c55b478 (patch)
tree055ea7af71cb9b84b62dcb070fb994cd78e46261 /lisp
parentf65aa365b70b002762f81bc1d2267ed97dca95d2 (diff)
(speedbar-frame-mode, speedbar-frame-width, speedbar-show-unknown-files,
speedbar-item-info-file-helper, speedbar-item-info-tag-helper): Doc fixes.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog18
-rw-r--r--lisp/speedbar.el12
2 files changed, 18 insertions, 12 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 78ef2e9c27..3aef0f71f4 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,7 +1,13 @@
+2007-02-19 Juanma Barranquero <[email protected]>
+
+ * speedbar.el (speedbar-frame-mode, speedbar-frame-width)
+ (speedbar-show-unknown-files, speedbar-item-info-file-helper)
+ (speedbar-item-info-tag-helper): Doc fixes.
+
2007-02-19 Kenichi Handa <[email protected]>
- * international/mule-cmds.el (locale-language-names): Map "eo"
- to "Esperanto".
+ * international/mule-cmds.el (locale-language-names):
+ Map "eo" to "Esperanto".
* language/european.el ("Esperanto"): New language environment.
@@ -23,8 +29,8 @@
2007-02-17 Chris Moore <[email protected]>
- * jka-cmpr-hook.el (jka-compr-compression-info-list): Recognize
- backups of bz2 compressed files.
+ * jka-cmpr-hook.el (jka-compr-compression-info-list):
+ Recognize backups of bz2 compressed files.
2007-02-17 Eli Zaretskii <[email protected]>
@@ -33,8 +39,8 @@
2007-02-17 Alin C. Soare <[email protected]> (tiny change)
- * emacs-lisp/lisp-mode.el (calculate-lisp-indent): Added
- indentation for the constants of Lisp.
+ * emacs-lisp/lisp-mode.el (calculate-lisp-indent):
+ Add indentation for the constants of Lisp.
2007-02-16 Stefan Monnier <[email protected]>
diff --git a/lisp/speedbar.el b/lisp/speedbar.el
index 711957d9cd..87176d0c1c 100644
--- a/lisp/speedbar.el
+++ b/lisp/speedbar.el
@@ -316,7 +316,7 @@ The default buffer is the buffer in the selected window in the attached frame."
(defcustom speedbar-show-unknown-files nil
"*Non-nil show files we can't expand with a ? in the expand button.
-nil means don't show the file in the list."
+A nil value means don't show the file in the list."
:group 'speedbar
:type 'boolean)
@@ -975,7 +975,7 @@ directories.")
;;;###autoload
(defun speedbar-frame-mode (&optional arg)
"Enable or disable speedbar. Positive ARG means turn on, negative turn off.
-nil means toggle. Once the speedbar frame is activated, a buffer in
+A nil ARG means toggle. Once the speedbar frame is activated, a buffer in
`speedbar-mode' will be displayed. Currently, only one speedbar is
supported at a time.
`speedbar-before-popup-hook' is called before popping up the speedbar frame.
@@ -1071,7 +1071,7 @@ selected. If the speedbar frame is active, then select the attached frame."
(defsubst speedbar-frame-width ()
"Return the width of the speedbar frame in characters.
-nil if it doesn't exist."
+Return nil if it doesn't exist."
(frame-width speedbar-frame))
(defun speedbar-mode ()
@@ -1482,8 +1482,8 @@ This function can be replaced in `speedbar-mode-functions-list' as
(defun speedbar-item-info-file-helper (&optional filename)
"Display info about a file that is on the current line.
-nil if not applicable. If FILENAME, then use that instead of reading
-it from the speedbar buffer."
+Return nil if not applicable. If FILENAME, then use that
+instead of reading it from the speedbar buffer."
(let* ((item (or filename (speedbar-line-file)))
(attr (if item (file-attributes item) nil)))
(if (and item attr) (speedbar-message "%s %-6d %s" (nth 8 attr)
@@ -1492,7 +1492,7 @@ it from the speedbar buffer."
(defun speedbar-item-info-tag-helper ()
"Display info about a tag that is on the current line.
-nil if not applicable."
+Return nil if not applicable."
(save-excursion
(beginning-of-line)
(if (re-search-forward " [-+=]?> \\([^\n]+\\)"