Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
emacs
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
emacs
emacs
Commits
a72ba929
Commit
a72ba929
authored
Sep 21, 1993
by
Brian Fox
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(compile-internal): Back out jimb change of making buffer read-only. It
is non-ergonomic.
parent
1b41c5d1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
lisp/progmodes/compile.el
lisp/progmodes/compile.el
+2
-2
No files found.
lisp/progmodes/compile.el
View file @
a72ba929
...
...
@@ -313,7 +313,7 @@ Returns the compilation buffer created."
(
set-buffer
outbuf
)
(
compilation-mode
)
(
buffer-disable-undo
(
current-buffer
))
(
setq
buffer-read-only
t
)
;; (setq buffer-read-only t) ;;; Non-ergonomic.
(
set
(
make-local-variable
'compilation-parse-errors-function
)
parser
)
(
set
(
make-local-variable
'compilation-error-message
)
error-message
)
(
set
(
make-local-variable
'compilation-error-regexp-alist
)
regexp-alist
)
...
...
@@ -614,7 +614,7 @@ Does NOT find the source line like \\[next-error]."
(
or
(
not
limit-search
)
(
>
compilation-parsing-end
limit-search
))
(
or
(
not
find-at-least
)
(
>
(
length
compilation-error-list
)
find-at-least
)))
(
>
=
(
length
compilation-error-list
)
find-at-least
)))
;; Since compilation-error-list is non-nil, it points to a specific
;; error the user wanted. So don't move it around.
nil
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment