From: Sam Steingold Date: Mon, 26 Nov 2001 21:15:29 +0000 (+0000) Subject: (c-submit-bug-report): Make sure that the arguments to `insert' are strings. X-Git-Tag: ttn-vms-21-2-B4~18107 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9714ec23e431fc9958605bc2cc8f16fa1e7d10da;p=emacs.git (c-submit-bug-report): Make sure that the arguments to `insert' are strings. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index ae475fa71cd..5838b7c244e 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2001-11-26 Sam Steingold + + * progmodes/cc-mode.el (c-submit-bug-report): Make sure that the + arguments to `insert' are strings. + 2001-11-26 Richard M. Stallman * startup.el (command-line-1): Call kill-buffer only in non-fancy case. diff --git a/lisp/progmodes/cc-mode.el b/lisp/progmodes/cc-mode.el index 0ac23c85c27..6c80702864c 100644 --- a/lisp/progmodes/cc-mode.el +++ b/lisp/progmodes/cc-mode.el @@ -385,12 +385,10 @@ Note that the style variables are always made local to the buffer." (c-set-style c-file-style)) (and c-file-offsets (mapcar - (function - (lambda (langentry) - (let ((langelem (car langentry)) - (offset (cdr langentry))) - (c-set-offset langelem offset) - ))) + (lambda (langentry) + (let ((langelem (car langentry)) + (offset (cdr langentry))) + (c-set-offset langelem offset))) c-file-offsets))) (add-hook 'hack-local-variables-hook 'c-postprocess-file-styles) @@ -893,13 +891,10 @@ CC Mode by making sure the proper entries are present on filladapt-mode defun-prompt-regexp)) vars) - (function - (lambda () - (run-hooks 'c-prepare-bug-report-hooks) - (insert - "Buffer Style: " style "\n\n" - (format "c-emacs-features: %s\n" c-features) - ))))))) + (lambda () + (run-hooks 'c-prepare-bug-report-hooks) + (insert (format "Buffer Style: %s\n\nc-emacs-features: %s\n" + style c-features))))))) (cc-provide 'cc-mode)