* mail/vms-pmail.el (insert-signature): Don't use end-of-buffer.
* tooltip.el: Use featurep 'xemacs. * printing.el: Move variable definitions before use, no code change.
This commit is contained in:
@@ -1,3 +1,12 @@
|
||||
2007-10-22 Dan Nicolaescu <dann@ics.uci.edu>
|
||||
|
||||
* mail/vms-pmail.el (insert-signature): Don't use end-of-buffer.
|
||||
|
||||
* tooltip.el: Use featurep 'xemacs.
|
||||
|
||||
* printing.el: Move variable definitions before use, no code
|
||||
change.
|
||||
|
||||
2007-10-22 Juri Linkov <juri@jurta.org>
|
||||
|
||||
* simple.el (goto-history-element): Allow minibuffer-default to be
|
||||
|
||||
@@ -110,7 +110,7 @@ First try the file indicated by environment variable MAIL$TRAILER.
|
||||
If that fails, try the file \"~/.signature\".
|
||||
If neither file exists, fails quietly."
|
||||
(interactive)
|
||||
(end-of-buffer)
|
||||
(goto-char (point-max))
|
||||
(newline)
|
||||
(if (vms-system-info "LOGICAL" "MAIL$TRAILER")
|
||||
(if (file-attributes (vms-system-info "LOGICAL" "MAIL$TRAILER"))
|
||||
|
||||
1132
lisp/printing.el
1132
lisp/printing.el
File diff suppressed because it is too large
Load Diff
@@ -273,7 +273,7 @@ is based on the current syntax table."
|
||||
|
||||
(defmacro tooltip-region-active-p ()
|
||||
"Value is non-nil if the region is currently active."
|
||||
(if (string-match "^GNU" (emacs-version))
|
||||
(if (not (featurep 'xemacs))
|
||||
`(and transient-mark-mode mark-active)
|
||||
`(region-active-p)))
|
||||
|
||||
|
||||
Reference in New Issue
Block a user