* 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:
Dan Nicolaescu
2007-10-22 02:37:14 +00:00
parent e79beb56d9
commit 46447ab34e
4 changed files with 575 additions and 570 deletions

View File

@@ -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

View File

@@ -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"))

File diff suppressed because it is too large Load Diff

View File

@@ -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)))