~ubuntu-branches/ubuntu/wily/semi/wily

« back to all changes in this revision

Viewing changes to debian/emacsen-startup

  • Committer: Bazaar Package Importer
  • Author(s): Tatsuya Kinoshita
  • Date: 2006-12-02 22:17:07 UTC
  • mfrom: (1.2.1 upstream) (3.1.3 edgy)
  • Revision ID: james.westby@ubuntu.com-20061202221707-zc72qytibw6mmc0v
Tags: 1.14.6+0.20061202-1
* New upstream release. (CVS semi-1_14 branch on 2006-12-02)
* debian/copyright: Reformat copyright years.
* debian/copyright: Mention Debian packaging conditions.

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
          (and (file-directory-p (concat elc-dir "/nomule"))
13
13
               (setq elc-dir (concat elc-dir "/nomule")))))
14
14
    (if (fboundp 'debian-pkg-add-load-path-item)
15
 
        (debian-pkg-add-load-path-item elc-dir)
 
15
        (debian-pkg-add-load-path-item elc-dir)
16
16
      (setq load-path (cons elc-dir load-path)))
17
17
    (setq mime-edit-split-message nil)
18
18
    (setq pgg-encrypt-for-me t)
19
19
    ;;(setq pgg-messages-locale "C") ;; default value is nil
20
20
    ;;(setq pgg-gpg-messages-locale pgg-messages-locale)
21
 
    (require 'mime-setup)
22
 
    (if (module-installed-p 'mime-w3m)
23
 
        (progn
24
 
          (setq mime-setup-enable-inline-html nil)
25
 
          (eval-after-load "mime-view"
26
 
            '(progn
27
 
               (autoload 'mime-w3m-preview-text/html "mime-w3m")
28
 
               (ctree-set-calist-strictly
29
 
                'mime-preview-condition
30
 
                '((type . text)
31
 
                  (subtype . html)
32
 
                  (body . visible)
33
 
                  (body-presentation-method . mime-w3m-preview-text/html)))
34
 
               (set-alist 'mime-view-type-subtype-score-alist
35
 
                          '(text . html) 3)))))
 
21
    (setq mime-setup-enable-inline-html nil)
 
22
    ;;(require 'mime-w3m) ;; text/html rendering with w3m-el
36
23
    ;;
37
24
    ))
38
25