]> git.eshelyaron.com Git - emacs.git/commitdiff
; Fix typos (bug#72167)
authorjohn muhl <jm@pub.pink>
Mon, 15 Jul 2024 20:08:41 +0000 (15:08 -0500)
committerEshel Yaron <me@eshelyaron.com>
Thu, 18 Jul 2024 06:28:59 +0000 (08:28 +0200)
* lisp/progmodes/peg.el (peg--actions): Correct spelling
of "post-processing".
* lisp/progmodes/php-ts-mode.el: Correct spelling of
"taken".

(cherry picked from commit 7093504da2d7267cec1f6530b3cb234a5301012d)

lisp/progmodes/peg.el
lisp/progmodes/php-ts-mode.el

index 6dedb6e48952e96a9941b9740db3eb0877a12c46..d19a48c3294d0407fc0b4be1602d5d16eff28684 100644 (file)
   "Actions collected along the current parse.
 Used at runtime for backtracking.  It's a list ((POS . THUNK)...).
 Each THUNK is executed at the corresponding POS.  Thunks are
-executed in a postprocessing step, not during parsing.")
+executed in a post-processing step, not during parsing.")
 
 (defvar peg--errors nil
   "Data keeping track of the rightmost parse failure location.
index 1298b39311bf76ca0c1904f54acfdc60cbadf7c1..89444f0208e033b8a14ce64f3f8a8447bbb0000a 100644 (file)
@@ -209,7 +209,7 @@ symbol."
         (when (derived-mode-p 'php-ts-mode)
           (php-ts-mode-set-style val)))))
 
-;; teken from c-ts-mode
+;; taken from c-ts-mode
 (defun php-ts-indent-style-safep (style)
   "Non-nil if STYLE's value is safe for file-local variables."
   (and (symbolp style) (not (functionp style))))