浏览代码

Fix func name

master
10sr 7 年前
父节点
当前提交
9db4f8a5ce
签署人:: 10sr GPG 密钥 ID: C384BB17CBB19347
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. +3
    -3
      emacs.el

+ 3
- 3
emacs.el 查看文件

@@ -1,6 +1,6 @@
;;; emacs.el --- 10sr emacs initialization ;;; emacs.el --- 10sr emacs initialization


;; Time-stamp: <2018-10-16 23:14:49 JST 10sr>
;; Time-stamp: <2018-10-16 23:18:27 JST 10sr>


;;; Code: ;;; Code:


@@ -2704,7 +2704,7 @@ When collection has just one element, return without asking."
If current path was not found in the parent revision try to go up path." If current path was not found in the parent revision try to go up path."
(interactive) (interactive)
(if git-walktree-current-commitish (if git-walktree-current-commitish
(let ((parents (git-walktree--parent-sha1 git-walktree-current-commitish)))
(let ((parents (git-walktree--parent-commitid git-walktree-current-commitish)))
;; TODO: Use if ;; TODO: Use if
(cl-case (length parents) (cl-case (length parents)
(0 (0
@@ -2720,7 +2720,7 @@ If current path was not found in the parent revision try to go up path."
;; What is object id? ;; What is object id?
;; commit id? ;; commit id?
;; commit sha1? ;; commit sha1?
(defun git-walktree--parent-sha1 (commitish)
(defun git-walktree--parent-commitid (commitish)
"Return list of parent commits of COMMITISH in sha1 string." "Return list of parent commits of COMMITISH in sha1 string."
(let ((type (git-walktree--git-plumbing "cat-file" (let ((type (git-walktree--git-plumbing "cat-file"
"-t" "-t"


正在加载...
取消
保存