~ubuntu-branches/ubuntu/raring/mailcrypt/raring

« back to all changes in this revision

Viewing changes to load-path.hack

  • Committer: Bazaar Package Importer
  • Author(s): Davide G. M. Salvetti
  • Date: 2004-02-28 12:11:35 UTC
  • Revision ID: james.westby@ubuntu.com-20040228121135-m0b6y3bqbvhtcdot
Tags: upstream-3.5.8
ImportĀ upstreamĀ versionĀ 3.5.8

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
;; Uncomment the following line and edit it appropriately if
 
2
;; your installation of VM, RMAIL, MH-E, or GNUS is not in
 
3
;; the default load-path.
 
4
 
 
5
;; (setq load-path (cons "/users/patl/elisp" load-path))
 
6
 
 
7
;; This insures that (require 'mailcrypt) will work correctly while
 
8
;; byte-compiling.
 
9
 
 
10
(setq load-path (cons nil load-path))
 
11
 
 
12
;; Make sure user is
 
13
 
 
14
(if (and
 
15
     (not (string-match "^19\\." emacs-version))
 
16
     (not (string-match "^2[0-9]\\." emacs-version)))
 
17
    (message
 
18
     (concat 
 
19
      "\nWARNING - Mailcrypt requires at least version 19 of GNU Emacs.\n"
 
20
      "Your version is:\n"
 
21
      (emacs-version)
 
22
      "\n")))