]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix typos in the manual and in a comment
authorJan Synacek <jan.synacek@gmail.com>
Thu, 28 Oct 2021 21:32:59 +0000 (23:32 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Thu, 28 Oct 2021 21:33:12 +0000 (23:33 +0200)
* lisp/minibuffer.el (completion-pcm--hilit-commonality):
* doc/lispintro/emacs-lisp-intro.texi (Mode Line): Fix typos
(bug#51434).

Copyright-paperwork-exempt: yes

doc/lispintro/emacs-lisp-intro.texi
lisp/minibuffer.el

index 391b6d9c590d83f31b234985426375b4e14b4c6a..308153f9231b651b182f232753dfb18f031065c9 100644 (file)
@@ -17843,7 +17843,7 @@ xmodmap -e "keysym Alt_L = Meta_L Alt_L"
 Finally, a feature I really like: a modified mode line.
 
 When I work over a network, I forget which machine I am using.  Also,
-I tend to lose track of where I am, and which line point is on.
+I tend to lose track of where I am, and which line point is on.
 
 So I reset my mode line to look like this:
 
index bc21f027b6effe671a94016c1c1da23c4bd6fdea..ca82b4a9e60df719a954467ed00477af37261e78 100644 (file)
@@ -3579,12 +3579,13 @@ between 0 and 1, and with faces `completions-common-part',
                 ;; "hole" in the middle of the string is indicated by
                 ;; "-".  Note that there are no "holes" near the edges
                 ;; of the string.  The completion score is a number
-                ;; bound by ]0..1]: the higher the better and only a
-                ;; perfect match (pattern equals string) will have
-                ;; score 1.  The formula takes the form of a quotient.
-                ;; For the numerator, we use the number of +, i.e. the
-                ;; length of the pattern.  For the denominator, it
-                ;; first computes
+                ;; bound by (0..1] (i.e., larger than (but not equal
+                ;; to) zero, and smaller or equal to one): the higher
+                ;; the better and only a perfect match (pattern equals
+                ;; string) will have score 1.  The formula takes the
+                ;; form of a quotient.  For the numerator, we use the
+                ;; number of +, i.e. the length of the pattern.  For
+                ;; the denominator, it first computes
                 ;;
                 ;;     hole_i_contrib = 1 + (Li-1)^(1/tightness)
                 ;;