comparison lisp/mail/mh-funcs.el @ 38414:67b464da13ec

Some fixes to follow coding conventions.
author Pavel Janík <Pavel@Janik.cz>
date Sun, 15 Jul 2001 19:53:53 +0000
parents 83f275dcd93a
children 2568d5a27317
comparison
equal deleted inserted replaced
38413:a26d9b55abb6 38414:67b464da13ec
1 ;;; mh-funcs --- mh-e functions not everyone will use right away 1 ;;; mh-funcs.el --- mh-e functions not everyone will use right away
2 ;; Time-stamp: <95/08/19 16:44:06 gildea> 2 ;; Time-stamp: <2001-07-14 13:08:45 pavel>
3 3
4 ;; Copyright (C) 1993, 1995 Free Software Foundation, Inc. 4 ;; Copyright (C) 1993, 1995 Free Software Foundation, Inc.
5 5
6 ;; This file is part of mh-e, part of GNU Emacs. 6 ;; This file is part of GNU Emacs.
7 7
8 ;; GNU Emacs is free software; you can redistribute it and/or modify 8 ;; GNU Emacs is free software; you can redistribute it and/or modify
9 ;; it under the terms of the GNU General Public License as published by 9 ;; it under the terms of the GNU General Public License as published by
10 ;; the Free Software Foundation; either version 2, or (at your option) 10 ;; the Free Software Foundation; either version 2, or (at your option)
11 ;; any later version. 11 ;; any later version.
26 ;; Putting these functions in a separate file lets mh-e start up faster, 26 ;; Putting these functions in a separate file lets mh-e start up faster,
27 ;; since less Lisp code needs to be loaded all at once. 27 ;; since less Lisp code needs to be loaded all at once.
28 28
29 ;;; Change Log: 29 ;;; Change Log:
30 30
31 ;; $Id: mh-funcs.el,v 1.4 1995/11/03 02:29:34 kwzh Exp erik $ 31 ;; $Id: mh-funcs.el,v 1.5 1996/01/14 07:34:30 erik Exp $
32 32
33 ;;; Code: 33 ;;; Code:
34 34
35 (provide 'mh-funcs) 35 (provide 'mh-funcs)
36 (require 'mh-e) 36 (require 'mh-e)
350 nil log-buffer t))) 350 nil log-buffer t)))
351 (set-buffer log-buffer) 351 (set-buffer log-buffer)
352 (mh-handle-process-error command value)) 352 (mh-handle-process-error command value))
353 (insert "\n(mh-store finished)\n"))) 353 (insert "\n(mh-store finished)\n")))
354 354
355 ;;; mh-funcs.el ends here