mirror of https://github.com/Chizi123/.emacs.d.git

Chizi123
2018-11-18 8f6f2705a38e2515b6c57fda12c5be29fb9a798f
commit | author | age
5cb5f7 1 ;;; magit-obsolete.el --- obsolete definitions  -*- lexical-binding: t -*-
C 2
3 ;; Copyright (C) 2010-2018  The Magit Project Contributors
4 ;;
5 ;; You should have received a copy of the AUTHORS.md file which
6 ;; lists all contributors.  If not, see http://magit.vc/authors.
7
8 ;; Author: Jonas Bernoulli <jonas@bernoul.li>
9 ;; Maintainer: Jonas Bernoulli <jonas@bernoul.li>
10
11 ;; Magit is free software; you can redistribute it and/or modify it
12 ;; under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 3, or (at your option)
14 ;; any later version.
15 ;;
16 ;; Magit is distributed in the hope that it will be useful, but WITHOUT
17 ;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
18 ;; or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
19 ;; License for more details.
20 ;;
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with Magit.  If not, see http://www.gnu.org/licenses.
23
24 ;;; Commentary:
25
26 ;; This library defines aliases for obsolete variables and functions.
27
28 ;;; Code:
29
30 (require 'magit)
31
32 ;;; Obsolete since v2.90.0
33
34 (define-obsolete-function-alias 'magit-reset-head 'magit-reset-mixed "Magit 2.90.0")
35 (define-obsolete-function-alias 'magit-gitignore 'magit-gitignore-globally "Magit 2.90.0")
36 (define-obsolete-function-alias 'magit-branch 'magit-branch-create "Magit 2.90.0")
37 (define-obsolete-function-alias 'magit-tag 'magit-tag-create "Magit 2.90.0")
38 (define-obsolete-function-alias 'magit-fetch 'magit-fetch-other "Magit 2.90.0")
39 (define-obsolete-function-alias 'magit-pull 'magit-pull-branch "Magit 2.90.0")
40 (define-obsolete-function-alias 'magit-rebase 'magit-rebase-branch "Magit 2.90.0")
41 (define-obsolete-function-alias 'magit-blame 'magit-blame-addition "Magit 2.90.0")
42 (define-obsolete-function-alias 'magit-revert 'magit-revert-and-commit "Magit 2.90.0")
43 (define-obsolete-function-alias 'magit-reset 'magit-reset-quickly "Magit 2.90.0")
44 (define-obsolete-function-alias 'magit-merge 'magit-merge-plain "Magit 2.90.0")
45 (define-obsolete-function-alias 'magit-stash 'magit-stash-both "Magit 2.90.0")
46 (define-obsolete-function-alias 'magit-snapshot 'magit-snapshot-both "Magit 2.90.0")
47 (define-obsolete-function-alias 'magit-push 'magit-push-other "Magit 2.90.0")
48 (define-obsolete-function-alias 'magit-commit 'magit-commit-create "Magit 2.90.0")
49 (define-obsolete-function-alias 'magit-log 'magit-log-other "Magit 2.90.0")
50 (define-obsolete-function-alias 'magit-reflog 'magit-reflog-other "Magit 2.90.0")
51 (define-obsolete-function-alias 'magit-diff 'magit-diff-range "Magit 2.90.0")
52
53 ;;; _
54 (provide 'magit-obsolete)
55 ;;; magit-obsolete.el ends here