emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/mh-e/mh-comp.el


From: Bill Wohler
Subject: [Emacs-diffs] Changes to emacs/lisp/mh-e/mh-comp.el
Date: Sat, 28 May 2005 18:04:56 -0400

Index: emacs/lisp/mh-e/mh-comp.el
diff -c emacs/lisp/mh-e/mh-comp.el:1.9 emacs/lisp/mh-e/mh-comp.el:1.10
*** emacs/lisp/mh-e/mh-comp.el:1.9      Wed May 18 11:01:20 2005
--- emacs/lisp/mh-e/mh-comp.el  Sat May 28 22:04:54 2005
***************
*** 1,6 ****
  ;;; mh-comp.el --- MH-E functions for composing messages
  
! ;; Copyright (C) 1993, 95, 1997, 2000, 2005 Free Software Foundation, Inc.
  
  ;; Author: Bill Wohler <address@hidden>
  ;; Maintainer: Bill Wohler <address@hidden>
--- 1,7 ----
  ;;; mh-comp.el --- MH-E functions for composing messages
  
! ;; Copyright (C) 1993, 1995, 1997,
! ;;  2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
  
  ;; Author: Bill Wohler <address@hidden>
  ;; Maintainer: Bill Wohler <address@hidden>
***************
*** 52,58 ****
  (defvar mh-identity-menu)
  
  ;;; Autoloads
- (autoload 'Info-goto-node "info")
  (autoload 'mail-mode-fill-paragraph "sendmail")
  (autoload 'mm-handle-displayed-p "mm-decode")
  
--- 53,58 ----
***************
*** 490,497 ****
     cc/all  sender and all recipients.
  If optional prefix argument INCLUDEP provided, then include the message
  in the reply using filter `mhl.reply' in your MH directory.
! If the file named by `mh-repl-formfile' exists, it is used as a skeleton
! for the reply.
  
  See also `mh-send'."
    (interactive (list
--- 490,499 ----
     cc/all  sender and all recipients.
  If optional prefix argument INCLUDEP provided, then include the message
  in the reply using filter `mhl.reply' in your MH directory.
! If the file named by `mh-repl-formfile' exists, it is used as a skeleton for
! the reply. If REPLY-TO is cc or all and you're using either the nmh or GNU
! mailutils variants and the file names by `mh-repl-group-formfile' exists, it
! is used instead.
  
  See also `mh-send'."
    (interactive (list
***************
*** 1629,1643 ****
  (defun mh-complete-word (word choices begin end)
    "Complete WORD at from CHOICES.
  Any match found replaces the text from BEGIN to END."
!   (let ((completion (try-completion word choices)))
      (cond ((eq completion t)
             (message "Completed: %s" word))
            ((null completion)
             (message "No completion for `%s'" word))
            ((stringp completion)
             (if (equal word completion)
!                (with-output-to-temp-buffer "*Completions*"
                   (display-completion-list (all-completions word choices)))
               (delete-region begin end)
               (insert completion))))))
  
--- 1631,1652 ----
  (defun mh-complete-word (word choices begin end)
    "Complete WORD at from CHOICES.
  Any match found replaces the text from BEGIN to END."
!   (let ((completion (try-completion word choices))
!         (completions-buffer "*Completions*"))
      (cond ((eq completion t)
+            (ignore-errors
+              (kill-buffer completions-buffer))
             (message "Completed: %s" word))
            ((null completion)
+            (ignore-errors
+              (kill-buffer completions-buffer))
             (message "No completion for `%s'" word))
            ((stringp completion)
             (if (equal word completion)
!                (with-output-to-temp-buffer completions-buffer
                   (display-completion-list (all-completions word choices)))
+              (ignore-errors
+                (kill-buffer completions-buffer))
               (delete-region begin end)
               (insert completion))))))
  
***************
*** 1965,1972 ****
  
  ;; "C-c /" prefix is used in mh-letter-mode by pgp.el and mailcrypt.el.
  
- ;;;###autoload(add-to-list 'auto-mode-alist '("/drafts/[0-9]+\\'" . 
mh-letter-mode))
- 
  (provide 'mh-comp)
  
  ;;; Local Variables:
--- 1974,1979 ----




reply via email to

[Prev in Thread] Current Thread [Next in Thread]