+2007-02-19 Juanma Barranquero <lekktu@gmail.com>
+
+ * 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 <handa@m17n.org>
- * 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.
2007-02-17 Chris Moore <dooglus@gmail.com>
- * 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 <eliz@gnu.org>
2007-02-17 Alin C. Soare <alinsoar@voila.fr> (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 <monnier@iro.umontreal.ca>
(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)
;;;###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.
(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 ()
(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)
(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]+\\)"