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
8879add8
Commit
8879add8
authored
Mar 05, 2011
by
Daiki Ueno
Committed by
Katsumi Yamaoka
Mar 05, 2011
Browse files
message.el (message-options): Don't mark it buffer-local when running under XEmacs.
parent
a9eeff78
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
2 deletions
+8
-2
lisp/gnus/ChangeLog
lisp/gnus/ChangeLog
+2
-1
lisp/gnus/message.el
lisp/gnus/message.el
+6
-1
No files found.
lisp/gnus/ChangeLog
View file @
8879add8
2011-03-04 Daiki Ueno <ueno@unixuser.org>
* message.el (message-options): Revert the change that's a workaround
for XEmacs buffer-local issue.
for XEmacs buffer-local issue; don't mark it buffer-local when running
under XEmacs.
2011-03-03 Tassilo Horn <tassilo@member.fsf.org>
...
...
lisp/gnus/message.el
View file @
8879add8
...
...
@@ -1814,7 +1814,12 @@ You must have the \"hashcash\" binary installed, see `hashcash-path'."
(
defvar
message-options
nil
"Some saved answers when sending message."
)
(make-variable-buffer-local 'message-options)
;; FIXME: On XEmacs this causes problems since let-binding like:
;; (let ((message-options message-options)) ...)
;; as in `message-send' and `mml-preview' loses to buffer-local
;; variable initialization.
(
unless
(
featurep
'xemacs
)
(
make-variable-buffer-local
'message-options
))
(
defvar
message-send-mail-real-function
nil
"Internal send mail function."
)
...
...
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