mirror of
https://github.com/correl/melpa.git
synced 2024-11-24 11:09:51 +00:00
Docstring fixes
This commit is contained in:
parent
b281bf39ca
commit
07065fb330
1 changed files with 2 additions and 4 deletions
|
@ -35,8 +35,6 @@
|
||||||
;; "package" here is used to mean a specific version of a project that
|
;; "package" here is used to mean a specific version of a project that
|
||||||
;; is prepared for download and installation.
|
;; is prepared for download and installation.
|
||||||
|
|
||||||
;; Currently only supports single-file projects stored in git.
|
|
||||||
|
|
||||||
;;; Code:
|
;;; Code:
|
||||||
|
|
||||||
;; Since this library is not meant to be loaded by users
|
;; Since this library is not meant to be loaded by users
|
||||||
|
@ -61,7 +59,7 @@
|
||||||
:type 'string)
|
:type 'string)
|
||||||
|
|
||||||
(defun package-build-checkout-darcs (repo dir)
|
(defun package-build-checkout-darcs (repo dir)
|
||||||
"checkout an svn package"
|
"checkout a darcs package"
|
||||||
(with-current-buffer (get-buffer-create "*package-build-checkout*")
|
(with-current-buffer (get-buffer-create "*package-build-checkout*")
|
||||||
(cond
|
(cond
|
||||||
((file-exists-p dir)
|
((file-exists-p dir)
|
||||||
|
@ -120,7 +118,7 @@
|
||||||
(match-string-no-properties 1)))))))
|
(match-string-no-properties 1)))))))
|
||||||
|
|
||||||
(defun package-build-checkout-git (repo dir &optional commit)
|
(defun package-build-checkout-git (repo dir &optional commit)
|
||||||
"checkout an git repo"
|
"checkout a git repo"
|
||||||
(with-current-buffer (get-buffer-create "*package-build-checkout*")
|
(with-current-buffer (get-buffer-create "*package-build-checkout*")
|
||||||
(goto-char (point-max))
|
(goto-char (point-max))
|
||||||
(cond
|
(cond
|
||||||
|
|
Loading…
Reference in a new issue