1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-24 07:20:37 +00:00

(finder-compile-keywords): Fix up comment style.

(finder-mouse-face-on-line): previous-line -> forward-line.
This commit is contained in:
Stefan Monnier 2007-09-19 14:57:02 +00:00
parent 1cbfaab92f
commit bf8aa90140
2 changed files with 11 additions and 8 deletions

View File

@ -1,5 +1,8 @@
2007-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
* finder.el (finder-compile-keywords): Fix up comment style.
(finder-mouse-face-on-line): previous-line -> forward-line.
* recentf.el: Remove spurious * in docstrings.
(recentf-save-list): Fix up comment style.

View File

@ -179,12 +179,12 @@ no arguments compiles from `load-path'."
\(provide '" (file-name-sans-extension
(file-name-nondirectory generated-finder-keywords-file)) ")
;;; Local Variables:
;;; version-control: never
;;; no-byte-compile: t
;;; no-update-autoloads: t
;;; End:
;;; " (file-name-nondirectory generated-finder-keywords-file) " ends here\n")
;; Local Variables:
;; version-control: never
;; no-byte-compile: t
;; no-update-autoloads: t
;; End:
\;;; " (file-name-nondirectory generated-finder-keywords-file) " ends here\n")
(kill-buffer "*finder-scratch*")
(eval-buffer) ;; So we get the new keyword list immediately
(basic-save-buffer))))
@ -207,7 +207,7 @@ no arguments compiles from `load-path'."
(defun finder-mouse-face-on-line ()
"Put `mouse-face' and `help-echo' properties on the previous line."
(save-excursion
(previous-line 1)
(forward-line -1)
(unless finder-help-echo
(setq finder-help-echo
(let* ((keys1 (where-is-internal 'finder-select
@ -372,5 +372,5 @@ finder directory, \\[finder-exit] = quit, \\[finder-summary] = help")))
(provide 'finder)
;;; arch-tag: ec85ff49-8cb8-41f5-a63f-9131d53ce2c5
;; arch-tag: ec85ff49-8cb8-41f5-a63f-9131d53ce2c5
;;; finder.el ends here