%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream
;; -*-emacs-lisp-*- ;; ;; Emacs startup file, e.g. /etc/emacs/site-start.d/50git-core.el ;; for the Debian git package (let ((dir (concat "/usr/share/" (symbol-name debian-emacs-flavor) "/site-lisp/git"))) (if (not (file-exists-p dir)) (message "git removed but not purged, skipping setup") ;; debian-pkg-add-load-path-item as from debian 3.1 "sarge", ;; emacsen-common 1.4.14 of June 2002 (debian-pkg-add-load-path-item dir) ;; Compatibility note: In debian git-core 1:1.7.0-1 there was a long ;; list of generated autoloads here, but now pruned back to the ;; interactive entrypoints. If you were using those autoloads in elisp ;; code, don't do that, use (require 'git) to express the dependency. ;; git.el (autoload 'git-status "git" "Entry point into git-status mode." t) ;; git-blame.el ;; this autoload as recommended by git-blame.el comments (autoload 'git-blame-mode "git-blame" "Minor mode for incremental blame for Git." t))) ;; End of file