From: Roland McGrath Date: Thu, 3 Mar 1994 22:13:45 +0000 (+0000) Subject: (generate-file-autoloads): Move misplaced paren in match clause of cond X-Git-Tag: emacs-19.34~9668 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=52859db83c36cbcb200fe98e41ddaaaa9658b8fd;p=emacs.git (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 --git a/lisp/emacs-lisp/autoload.el b/lisp/emacs-lisp/autoload.el index d54837374d4..22d06cc20f0 100644 --- a/lisp/emacs-lisp/autoload.el +++ b/lisp/emacs-lisp/autoload.el @@ -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))