aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/mail
diff options
context:
space:
mode:
authorDan Nicolaescu2007-10-22 02:37:14 +0000
committerDan Nicolaescu2007-10-22 02:37:14 +0000
commit46447ab34e005237aa4aaecf0a5edc5bb2ba5246 (patch)
tree1c445e87e3315a469e454f1a3bf56763ba58ceef /lisp/mail
parente79beb56d95030348653a23b684f7f6492b5eaa7 (diff)
downloademacs-46447ab34e005237aa4aaecf0a5edc5bb2ba5246.tar.gz
emacs-46447ab34e005237aa4aaecf0a5edc5bb2ba5246.zip
* 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.
Diffstat (limited to 'lisp/mail')
-rw-r--r--lisp/mail/vms-pmail.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mail/vms-pmail.el b/lisp/mail/vms-pmail.el
index 2d01e2a612b..022a8070a2e 100644
--- a/lisp/mail/vms-pmail.el
+++ b/lisp/mail/vms-pmail.el
@@ -110,7 +110,7 @@ First try the file indicated by environment variable MAIL$TRAILER.
110If that fails, try the file \"~/.signature\". 110If that fails, try the file \"~/.signature\".
111If neither file exists, fails quietly." 111If neither file exists, fails quietly."
112 (interactive) 112 (interactive)
113 (end-of-buffer) 113 (goto-char (point-max))
114 (newline) 114 (newline)
115 (if (vms-system-info "LOGICAL" "MAIL$TRAILER") 115 (if (vms-system-info "LOGICAL" "MAIL$TRAILER")
116 (if (file-attributes (vms-system-info "LOGICAL" "MAIL$TRAILER")) 116 (if (file-attributes (vms-system-info "LOGICAL" "MAIL$TRAILER"))