Ver código fonte

Add .dirty to git org-version info if files are modified

Shows files as modified by appending .dirty to indicate that
you are running org-mode from a dirty working tree (some tracked
files are modified)
Bernt Hansen 15 anos atrás
pai
commit
a32e8e8fec
1 arquivos alterados com 6 adições e 1 exclusões
  1. 6 1
      lisp/org.el

+ 6 - 1
lisp/org.el

@@ -103,6 +103,7 @@
 With prefix arg HERE, insert it at point."
   (interactive "P")
   (let* ((org-version org-version)
+	 (git-version)
 	 (dir (concat (file-name-directory (locate-library "org")) "../" )))
     (if (file-exists-p (expand-file-name ".git" dir))
 	(progn
@@ -113,7 +114,11 @@ With prefix arg HERE, insert it at point."
 	   (replace-regexp "-" ".")
 	   (goto-char (point-min))
 	   (re-search-forward "[^\n]+")
-	   (setq org-version (concat org-version " (" (match-string 0) ")")))))
+	   (setq git-version (match-string 0))
+	   (shell-command (concat "cd " dir " && git diff-index --name-only HEAD --"))
+	   (unless (eql 1 (point-max))
+	     (setq git-version (concat git-version ".dirty")))
+	   (setq org-version (concat org-version " (" git-version ")")))))
     (let ((version (format "Org-mode version %s" org-version)))
       (message version)
       (if here