| @@ -938,14 +938,25 @@ found, otherwise returns nil." | |||||
| t) | t) | ||||
| (lazy-load-eval 'git-command | (lazy-load-eval 'git-command | ||||
| nil | nil | ||||
| (if (boundp 'git-command-major-mode-alist) | |||||
| (progn | |||||
| (add-to-list 'git-command-major-mode-alist | |||||
| '("di" . diff-mode)) | |||||
| (add-to-list 'git-command-major-mode-alist | |||||
| '("graph" . fundamental-mode)) | |||||
| (add-to-list 'git-command-major-mode-alist | |||||
| '("log" . fundamental-mode)))) | |||||
| ;; old git-command | |||||
| (when (boundp 'git-command-major-mode-alist) | |||||
| (add-to-list 'git-command-major-mode-alist | |||||
| '("di" . diff-mode)) | |||||
| (add-to-list 'git-command-major-mode-alist | |||||
| '("graph" . fundamental-mode)) | |||||
| (add-to-list 'git-command-major-mode-alist | |||||
| '("log" . fundamental-mode))) | |||||
| ;; new git-command | |||||
| (when (boundp 'git-command-view-command-list) | |||||
| (add-to-list 'git-command-view-command-list | |||||
| "graph")) | |||||
| (when (boundp 'git-command-aliases-alist) | |||||
| (add-to-list 'git-command-aliases-alist | |||||
| '("di" . (lambda (options cmd args) | |||||
| (git-command-exec options | |||||
| "diff" | |||||
| args))))) | |||||
| (or git-command-prompt-file | (or git-command-prompt-file | ||||
| (setq git-command-prompt-file | (setq git-command-prompt-file | ||||
| (git-command-find-git-ps1 | (git-command-find-git-ps1 | ||||