changeset 6184:f18b10850c00

(generate-file-autoloads): Move misplaced paren in match clause of cond so copying the rest of the line to the output is the else clause of if (eolp), not after the if.
author Roland McGrath <roland@gnu.org>
date Thu, 03 Mar 1994 22:13:45 +0000
parents 242d3fed9285
children 82a92cf44059
files lisp/emacs-lisp/autoload.el
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/emacs-lisp/autoload.el	Thu Mar 03 21:28:36 1994 +0000
+++ b/lisp/emacs-lisp/autoload.el	Thu Mar 03 22:13:45 1994 +0000
@@ -206,11 +206,11 @@
 					   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))