comparison lisp/image-dired.el @ 107517:ed16fdd2685a

Fix typos in docstrings. * image-dired.el (image-dired-display-thumbs): Fix typo in docstring. (image-dired-read-comment): Doc fix. * json.el (json-object-type, json-array-type, json-key-type, json-false) (json-null, json-read-number): * minibuffer.el (completion-in-region-functions): * calendar/cal-tex.el (cal-tex-daily-end, cal-tex-number-weeks) (cal-tex-cursor-week): * emacs-lisp/trace.el (trace-function): * eshell/em-basic.el (eshell/printnl): * eshell/em-dirs.el (eshell-last-dir-ring, eshell-parse-drive-letter) (eshell-read-last-dir-ring, eshell-write-last-dir-ring): * obsolete/levents.el (allocate-event, event-key, event-object) (event-point, event-process, event-timestamp, event-to-character) (event-window, event-x, event-x-pixel, event-y, event-y-pixel): * textmodes/reftex-vars.el (reftex-index-macros-builtin) (reftex-section-levels, reftex-auto-recenter-toc, reftex-toc-mode-hook) (reftex-cite-punctuation, reftex-search-unrecursed-path-first) (reftex-highlight-selection): Fix typos in docstrings.
author Juanma Barranquero <lekktu@gmail.com>
date Mon, 22 Mar 2010 17:50:29 +0100
parents 1d1d5d9bd884
children d835100c3e8b f773f82f2c63
comparison
equal deleted inserted replaced
107516:61e4d637cc65 107517:ed16fdd2685a
799 `image-dired-thumbnail-buffer' buffer in the right window. 799 `image-dired-thumbnail-buffer' buffer in the right window.
800 800
801 With optional argument APPEND, append thumbnail to thumbnail buffer 801 With optional argument APPEND, append thumbnail to thumbnail buffer
802 instead of erasing it first. 802 instead of erasing it first.
803 803
804 Option argument DO-NOT-POP controls if `pop-to-buffer' should be 804 Optional argument DO-NOT-POP controls if `pop-to-buffer' should be
805 used or not. If non-nil, use `display-buffer' instead of 805 used or not. If non-nil, use `display-buffer' instead of
806 `pop-to-buffer'. This is used from functions like 806 `pop-to-buffer'. This is used from functions like
807 `image-dired-next-line-and-display' and 807 `image-dired-next-line-and-display' and
808 `image-dired-previous-line-and-display' where we do not want the 808 `image-dired-previous-line-and-display' where we do not want the
809 thumbnail buffer to be selected." 809 thumbnail buffer to be selected."
2111 (image-dired-update-property 'comment comment)) 2111 (image-dired-update-property 'comment comment))
2112 (image-dired-display-thumb-properties)) 2112 (image-dired-display-thumb-properties))
2113 2113
2114 (defun image-dired-read-comment (&optional file) 2114 (defun image-dired-read-comment (&optional file)
2115 "Read comment for an image. 2115 "Read comment for an image.
2116 Read comment for an image, optionally using old comment from FILE 2116 Optionally use old comment from FILE as initial value."
2117 as initial value."
2118 (let ((comment 2117 (let ((comment
2119 (read-string 2118 (read-string
2120 "Comment: " 2119 "Comment: "
2121 (if file (image-dired-get-comment file))))) 2120 (if file (image-dired-get-comment file)))))
2122 comment)) 2121 comment))