mirror of
https://git.savannah.gnu.org/git/emacs/org-mode.git
synced 2024-11-22 07:09:47 +00:00
contrib/lisp/org-git-link.el: Small fixes
* contrib/lisp/org-git-link.el: Wrap into `eval-and-compile' to silent warnings. (org-git-show): Use `with-current-buffer' instead of (save-excursion (set-buffer ...)) TINYCHANGE
This commit is contained in:
parent
137fd35b64
commit
69eb39a4a9
@ -132,10 +132,11 @@
|
||||
(list (expand-file-name ".git" dir) relpath))))
|
||||
|
||||
|
||||
(if (featurep 'xemacs)
|
||||
(defalias 'org-git-gitrepos-p 'org-git-find-gitdir)
|
||||
(defalias 'org-git-gitrepos-p 'org-git-find-gitdir
|
||||
"Return non-nil if path is in git repository"))
|
||||
(eval-and-compile
|
||||
(if (featurep 'xemacs)
|
||||
(defalias 'org-git-gitrepos-p 'org-git-find-gitdir)
|
||||
(defalias 'org-git-gitrepos-p 'org-git-find-gitdir
|
||||
"Return non-nil if path is in git repository")))
|
||||
|
||||
;; splitting the link string
|
||||
|
||||
@ -196,8 +197,7 @@
|
||||
(unless
|
||||
(zerop (call-process org-git-program nil buffer nil
|
||||
"--no-pager" (concat "--git-dir=" gitdir) "show" object))
|
||||
(error "git error: %s " (save-excursion (set-buffer buffer)
|
||||
(buffer-string)))))
|
||||
(error "git error: %s " (with-current-buffer buffer (buffer-string)))))
|
||||
|
||||
(defun org-git-blob-sha (gitdir object)
|
||||
"Return sha of the referenced object"
|
||||
|
Loading…
Reference in New Issue
Block a user