debian: Release git 1:2.9.3-1
[git/debian.git] / debian / git-el.emacsen-startup
bloba32a84162a77ef3617f7205a97a8f4fe8120acae
1 ;; -*-emacs-lisp-*-
2 ;;
3 ;; Emacs startup file, e.g.  /etc/emacs/site-start.d/50git-core.el
4 ;; for the Debian git package
7 (let ((dir (concat "/usr/share/"
8                    (symbol-name debian-emacs-flavor)
9                    "/site-lisp/git")))
10   (if (not (file-exists-p dir))
11       (message "git removed but not purged, skipping setup")
13     ;; debian-pkg-add-load-path-item as from debian 3.1 "sarge",
14     ;; emacsen-common 1.4.14 of June 2002
15     (debian-pkg-add-load-path-item dir)
17     ;; Compatibility note: In debian git-core 1:1.7.0-1 there was a long
18     ;; list of generated autoloads here, but now pruned back to the
19     ;; interactive entrypoints.  If you were using those autoloads in elisp
20     ;; code, don't do that, use (require 'git) to express the dependency.
22     ;; git.el
24     (autoload 'git-status "git" "Entry point into git-status mode." t)
26     ;; git-blame.el
28     ;; this autoload as recommended by git-blame.el comments
29     (autoload 'git-blame-mode "git-blame"
30       "Minor mode for incremental blame for Git." t)))
32 ;; End of file