Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
73f6360c
Commit
73f6360c
authored
Apr 07, 2009
by
Glenn Morris
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(ns-pop-up-frames): Make it a defcustom.
parent
384b53ab
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
3 deletions
+10
-3
lisp/ChangeLog
lisp/ChangeLog
+2
-0
lisp/term/ns-win.el
lisp/term/ns-win.el
+8
-3
No files found.
lisp/ChangeLog
View file @
73f6360c
2009-04-07 Glenn Morris <rgm@gnu.org>
* term/ns-win.el (ns-pop-up-frames): Make it a defcustom.
* mail/rmail.el (rmail-expunge-and-save): Let rmail-expunge show the
message.
(rmail-quit): Mark summary unmodified.
...
...
lisp/term/ns-win.el
View file @
73f6360c
...
...
@@ -955,10 +955,15 @@ Lines are highlighted according to `ns-input-line'."
(
message
ns-output-file
)
(
if
ns-output-file
(
write-file
ns-output-file
))))
(
def
var
ns-pop-up-frames
'fresh
"
*
Non-nil means open files upon request from the Workspace in a new frame.
(
def
custom
ns-pop-up-frames
'fresh
"Non-nil means open files upon request from the Workspace in a new frame.
If t, always do so. Any other non-nil value means open a new frame
unless the current buffer is a scratch buffer."
)
unless the current buffer is a scratch buffer."
:type
'
(
choice
(
const
:tag
"Never"
nil
)
(
const
:tag
"Always"
t
)
(
other
:tag
"Except for scratch buffer"
fresh
))
:version
"23.1"
:group
'ns
)
(
declare-function
ns-hide-emacs
"nsfns.m"
(
on
))
...
...
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