summaryrefslogtreecommitdiff
path: root/debian/emacs-jabber.emacsen-startup
blob: 7bb2aca601ba903d6fb7bff41b8923ac5b864c4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
;; -*-emacs-lisp-*-
;;
;; Emacs startup file for the Debian emacs-jabber package.

(if (file-exists-p "/usr/share/emacs/site-lisp/emacs-jabber")
    (progn
      (debian-pkg-add-load-path-item
       (concat "/usr/share/" (symbol-name flavor) "/site-lisp/emacs-jabber"))
      ;; Make sure that the uncompiled files are also in the load-path, near the
      ;; end.  This is for moving point to the code when view help.
      (setq load-path
            (append load-path '("/usr/share/emacs/site-lisp/emacs-jabber")))
      (load "jabber-autoloads"))  
  (message "Package emacs-jabber removed but not purged.  Skipping setup."))