Skip to content

Commit

Permalink
move things around
Browse files Browse the repository at this point in the history
  • Loading branch information
Linh Dang committed Aug 28, 2008
1 parent 42702d3 commit fe78707
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README → doc/README
@@ -1,6 +1,5 @@
LGit is an experimental clone of Magit


MAGIT:
======

Expand All @@ -19,3 +18,4 @@ LGit is Magit pushed to the side of flash UI while Magit was more about
functionalites.


This is the END.
4 changes: 2 additions & 2 deletions egg.el
Expand Up @@ -242,9 +242,9 @@ ARGS is a list of arguments to pass to PROGRAM."
(defsubst egg-git-ok (buffer &rest args)
(= (apply 'call-process "git" nil buffer nil args) 0))

(defsubst egg-wdir-clean () (egg-git-ok "diff" "--quiet"))
(defsubst egg-wdir-clean () (egg-git-ok nil "diff" "--quiet"))
(defsubst egg-file-updated (file)
(egg-git-ok "diff" "--quiet" "--" file))
(egg-git-ok nil "diff" "--quiet" "--" file))
(defsubst egg-index-empty () (egg-git-ok "diff" "--cached" "--quiet"))

(defsubst egg-git-to-lines (&rest args)
Expand Down

0 comments on commit fe78707

Please sign in to comment.