]> git.eshelyaron.com Git - emacs.git/commitdiff
; Fix some typos.
authorBasil L. Contovounesios <contovob@tcd.ie>
Thu, 11 Mar 2021 22:27:20 +0000 (22:27 +0000)
committerBasil L. Contovounesios <contovob@tcd.ie>
Thu, 11 Mar 2021 22:51:42 +0000 (22:51 +0000)
etc/NEWS
lisp/button.el
lisp/image-mode.el
lisp/progmodes/project.el

index b3f4ade3373575d2915e9b6b92e85e567e6acf9f..4b8700a01ccc329aa7f352eb565f9a31318d5f3c 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -1441,9 +1441,9 @@ decaying average of delays, and if this number gets too high, the
 animation is stopped.
 
 +++
-*** The 'n' and 'p' commands (next/previous image) now respects dired order.
+*** The 'n' and 'p' commands (next/previous image) now respect Dired order.
 These commands would previously display the next/previous image in
-alphabetical order, but will now find the "parent" dired buffer and
+lexicographic order, but will now find the "parent" Dired buffer and
 select the next/previous image file according to how the files are
 sorted there.  The commands have also been extended to work when the
 "parent" buffer is an archive mode (i.e., zip file or the like) or tar
index 043de8eeb7b034beab9858f2609d07044dbdf206..69d70540c06097f15d24a6204d6cd93ef4d9f02a 100644 (file)
@@ -472,8 +472,8 @@ mouse event is used.
 If there's no button at POS, do nothing and return nil, otherwise
 return t.
 
-To get a description of what function will called when pushing a
-butting, use the `button-describe' command."
+To get a description of the function that will be invoked when
+pushing a button, use the `button-describe' command."
   (interactive
    (list (if (integerp last-command-event) (point) last-command-event)))
   (if (and (not (integerp pos)) (eventp pos))
index 8b61aa7e73fa50da23afc0ec097f074af233c3d5..e9a962ffe96985dd25e466dbc1c7b4f7071c87d2 100644 (file)
@@ -1144,8 +1144,8 @@ replacing the current Image mode buffer."
       (funcall next))))
 
 (defun image-mode--directory-buffers (file)
-  "Return a alist of type/buffer for all \"parent\" buffers to image FILE.
-This is normally a list of dired buffers, but can also be archive and
+  "Return an alist of type/buffer for all \"parent\" buffers to image FILE.
+This is normally a list of Dired buffers, but can also be archive and
 tar mode buffers."
   (let ((buffers nil)
         (dir (file-name-directory file)))
index c4bcf88e4ce9618b0b4a1dcc06acf3e905b2ec46..18da4398f4675f663cfb7f024e02f5c16c336488 100644 (file)
 ;;
 ;; - Write a new function that will determine the current project
 ;; based on the directory and add it to `project-find-functions'
-;; (which see) using `add-hook'. It is a good idea to depend on the
+;; (which see) using `add-hook'.  It is a good idea to depend on the
 ;; directory only, and not on the current major mode, for example.
 ;; Because the usual expectation is that all files in the directory
 ;; belong to the same project (even if some/most of them are ignored).