]> git.eshelyaron.com Git - emacs.git/commitdiff
(generate-file-autoloads): Move misplaced paren in match clause of cond
authorRoland McGrath <roland@gnu.org>
Thu, 3 Mar 1994 22:13:45 +0000 (22:13 +0000)
committerRoland McGrath <roland@gnu.org>
Thu, 3 Mar 1994 22:13:45 +0000 (22:13 +0000)
so copying the rest of the line to the output is the else clause of if
(eolp), not after the if.

lisp/emacs-lisp/autoload.el

index d54837374d460a2e2fe90eef9e64a761f65f1e49..22d06cc20f07b4bf3aca23894d3f7c578552ee98 100644 (file)
@@ -206,11 +206,11 @@ are used."
                                           outbuf))
                                  (terpri outbuf)))
                            (let ((print-escape-newlines t))
-                             (print autoload outbuf)))
+                             (print autoload outbuf))))
                          ;; Copy the rest of the line to the output.
                          (let ((begin (point)))
                            (forward-line 1)
-                           (princ (buffer-substring begin (point)) outbuf)))))
+                           (princ (buffer-substring begin (point)) outbuf))))
                   ((looking-at ";")
                    ;; Don't read the comment.
                    (forward-line 1))