From: Stefan <monnier@iro.umontreal.ca>
Cc: emacs-devel@gnu.org
Subject: compilation-mode makes the buffer read-only
Date: Sun, 31 Oct 2004 18:05:40 -0500 [thread overview]
Message-ID: <m1u0sajyax.fsf-monnier+emacs@gnu.org> (raw)
The recent change that makes compilation-mode buffers read-only breaks
C-u M-x checkdoc-current-buffer RET
Of course I can add some inhibit-read-only bindings in checkdoc.el but why
not avoid those incompatibilities altogether. How about the patch below?
Stefan
--- orig/lisp/progmodes/compile.el
+++ mod/lisp/progmodes/compile.el
@@ -939,7 +939,9 @@
(unless (getenv "EMACS") '("EMACS=t"))
(copy-sequence process-environment))))
(if (not (eq mode t))
- (funcall mode)
+ (progn
+ (funcall mode)
+ (setq buffer-read-only t))
(setq buffer-read-only nil)
(with-no-warnings (comint-mode))
(compilation-shell-minor-mode))
@@ -1203,8 +1205,6 @@
"Prepare the buffer for the compilation parsing commands to work.
Optional argument MINOR indicates this is called from
`compilation-minor-mode'."
- (unless minor
- (setq buffer-read-only t))
(make-local-variable 'compilation-current-error)
(make-local-variable 'compilation-messages-start)
(make-local-variable 'compilation-error-screen-columns)
next reply other threads:[~2004-10-31 23:05 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2004-10-31 23:05 Stefan [this message]
2004-11-01 8:01 ` compilation-mode makes the buffer read-only Daniel Pfeiffer
2004-11-02 8:53 ` Richard Stallman
2004-11-02 12:11 ` Stefan
2004-11-03 12:45 ` Richard Stallman
2004-11-03 14:16 ` Stefan Monnier
2004-11-04 9:51 ` Richard Stallman
2004-11-05 8:05 ` Stefan
2004-11-09 11:14 ` Richard Stallman
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=m1u0sajyax.fsf-monnier+emacs@gnu.org \
--to=monnier@iro.umontreal.ca \
--cc=emacs-devel@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.