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
Open sidebar
emacs
emacs
Commits
97f05794
Commit
97f05794
authored
Sep 08, 2011
by
Juri Linkov
Browse files
* lisp/progmodes/compile.el (compilation-environment): Make it a defcustom.
Fixes: debbugs:8340
parent
bfe5d7f0
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
3 deletions
+12
-3
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/progmodes/compile.el
lisp/progmodes/compile.el
+7
-3
No files found.
lisp/ChangeLog
View file @
97f05794
2011-09-08 Juri Linkov <juri@jurta.org>
* progmodes/compile.el (compilation-environment): Make it
a defcustom (bug#8340).
2011-09-08 Martin Rudalics <rudalics@gmx.at>
* window.el (frame-auto-delete): Rename to window-auto-delete.
...
...
lisp/progmodes/compile.el
View file @
97f05794
...
...
@@ -637,11 +637,15 @@ This should be a function of three arguments: process status, exit status,
and
exit
message
; it returns a cons (MESSAGE . MODELINE) of the strings to
write
into
the
compilation
buffer,
and
to
put
in
its
mode
line.
")
(def
var
compilation-environment nil
"
*
List
of
environment
variables
for
compilation
to
inherit.
(def
custom
compilation-environment nil
"
List
of
environment
variables
for
compilation
to
inherit.
Each
element
should
be
a
string
of
the
form
ENVVARNAME=VALUE.
This
list
is
temporarily
prepended
to
`
process-environment
'
prior
to
starting
the
compilation
process.
")
starting
the
compilation
process.
"
:type '(repeat (string :tag "
ENVVARNAME=VALUE
"))
:options '(("
LANG=C
"))
:group 'compilation
:version "
24.1
")
;; History of compile commands.
(defvar compile-history 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