diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2009-01-29 12:34:08 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2009-01-29 12:34:08 +0000 |
commit | 426bf35900e19d0332c75bd1af75d12a99902a5d (patch) | |
tree | bc928e5ed0d08c241f3c3084628829162a4e9090 /lisp/vc-dir.el | |
parent | 6570a1c427c086c81038a7b7c725094729afd3f4 (diff) | |
download | emacs-426bf35900e19d0332c75bd1af75d12a99902a5d.tar.gz emacs-426bf35900e19d0332c75bd1af75d12a99902a5d.tar.bz2 emacs-426bf35900e19d0332c75bd1af75d12a99902a5d.zip |
* vc-dir.el (vc-dir-menu-map, vc-dir-at-event, vc-dir-resynch-file):
Fix typos in docstrings.
Diffstat (limited to 'lisp/vc-dir.el')
-rw-r--r-- | lisp/vc-dir.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/vc-dir.el b/lisp/vc-dir.el index 18186f3d01a..249ceec75f9 100644 --- a/lisp/vc-dir.el +++ b/lisp/vc-dir.el @@ -206,7 +206,7 @@ See `run-hooks'." '(menu-item "Register" vc-register :help "Register file set into the version control system")) map) - "Menu for VC dir") + "Menu for VC dir.") ;; VC backends can use this to add mode-specific menu items to ;; vc-dir-menu-map. @@ -276,8 +276,8 @@ See `run-hooks'." "Keymap for directory buffer.") (defmacro vc-dir-at-event (event &rest body) - "Evaluate `body' with point located at event-start of `event'. -If `body' uses `event', it should be a variable, + "Evaluate BODY with point located at event-start of EVENT. +If BODY uses EVENT, it should be a variable, otherwise it will be evaluated twice." (let ((posn (make-symbol "vc-dir-at-event-posn"))) `(save-excursion @@ -850,7 +850,7 @@ If it is a file, return the corresponding cons for the file itself." (vc-dir-update fileentries (current-buffer))))) (defun vc-dir-resynch-file (&optional fname) - "Update the entries for FILE in any directory buffers that list it." + "Update the entries for FNAME in any directory buffers that list it." (let ((file (or fname (expand-file-name buffer-file-name))) (found-vc-dir-buf nil)) (save-excursion |