emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/peg f5c07b1c2f: * peg-tests.el (peg-ex-lisp): Fix inden


From: Stefan Monnier
Subject: [elpa] externals/peg f5c07b1c2f: * peg-tests.el (peg-ex-lisp): Fix indent
Date: Sun, 11 Dec 2022 11:25:40 -0500 (EST)

branch: externals/peg
commit f5c07b1c2f65f325003a65b12573a0bbacd0fceb
Author: Stefan Monnier <monnier@iro.umontreal.ca>
Commit: Stefan Monnier <monnier@iro.umontreal.ca>

    * peg-tests.el (peg-ex-lisp): Fix indent
---
 peg-tests.el | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/peg-tests.el b/peg-tests.el
index cedccd7eaa..96faf2a3d4 100644
--- a/peg-tests.el
+++ b/peg-tests.el
@@ -1,6 +1,6 @@
 ;;; peg-tests.el --- Tests of PEG parsers            -*- lexical-binding: t; 
-*-
 
-;; Copyright (C) 2008-2019  Free Software Foundation, Inc.
+;; Copyright (C) 2008-2022  Free Software Foundation, Inc.
 
 ;; This program is free software; you can redistribute it and/or modify
 ;; it under the terms of the GNU General Public License as published by
@@ -313,8 +313,8 @@ resp. succeded instead of signaling an error."
           `(s -- (intern s)))
    (symchar [a-z A-Z 0-9 "-;!#%&'*+,./:;<=>?@[]^_`{|}~"])
    (list "("           `(-- (cons nil nil)) `(hd -- hd hd)
-        (* sexp        `(tl e -- (setcdr tl (list e)))
-           ) _ ")"     `(hd _tl -- (cdr hd)))
+        (* sexp        `(tl e -- (setcdr tl (list e))))
+        _ ")"  `(hd _tl -- (cdr hd)))
    (digit [0-9])
    (terminating (or (set " \n\t();\"'") (eob)))))
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]