# HG changeset patch # User Roland McGrath # Date 762732825 0 # Node ID f18b10850c0034655da594978bd352ba345824bb # Parent 242d3fed9285c76be5146a7ab77d6998db6d216f (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. diff -r 242d3fed9285 -r f18b10850c00 lisp/emacs-lisp/autoload.el --- 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))