* [PATCH 6/7] git-blame.el: Doc fixes and cleanup
@ 2007-02-09 8:21 David Kågedal
2007-02-09 9:39 ` Jakub Narebski
0 siblings, 1 reply; 3+ messages in thread
From: David Kågedal @ 2007-02-09 8:21 UTC (permalink / raw)
To: git
Signed-off-by: David Kågedal <davidk@lysator.liu.se>
---
contrib/emacs/git-blame.el | 14 ++++++++++----
1 files changed, 10 insertions(+), 4 deletions(-)
diff --git a/contrib/emacs/git-blame.el b/contrib/emacs/git-blame.el
index f183964..7daa4e6 100644
--- a/contrib/emacs/git-blame.el
+++ b/contrib/emacs/git-blame.el
@@ -123,6 +123,7 @@
;;;###autoload
(defun git-blame-mode (&optional arg)
+ "Minor mode for displaying Git blame"
(interactive "P")
(if arg
(setq git-blame-mode (eq arg 1))
@@ -170,20 +171,25 @@
(process-send-region git-blame-proc (point-min) (point-max))
(process-send-eof git-blame-proc))))
+(defun remove-git-blame-text-properties (start end)
+ (let ((modified (buffer-modified-p))
+ (inhibit-read-only t))
+ (remove-text-properties start end '(point-entered nil))
+ (set-buffer-modified-p modified)))
+
(defun git-blame-cleanup ()
"Remove all blame properties"
(mapcar 'delete-overlay git-blame-overlays)
(setq git-blame-overlays nil)
- (let ((modified (buffer-modified-p)))
- (remove-text-properties (point-min) (point-max) '(point-entered nil))
- (set-buffer-modified-p modified)))
+ (remove-git-blame-text-properties (point-min) (point-max)))
(defun git-blame-sentinel (proc status)
(with-current-buffer (process-buffer proc)
(with-current-buffer git-blame-file
(setq git-blame-proc nil)))
;;(kill-buffer (process-buffer proc))
- (message "git blame finished"))
+ ;;(message "git blame finished")
+ )
(defvar in-blame-filter nil)
--
1.5.0.rc3.204.g93c76
--
David Kågedal
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH 6/7] git-blame.el: Doc fixes and cleanup
2007-02-09 8:21 [PATCH 6/7] git-blame.el: Doc fixes and cleanup David Kågedal
@ 2007-02-09 9:39 ` Jakub Narebski
2007-02-09 11:02 ` David Kågedal
0 siblings, 1 reply; 3+ messages in thread
From: Jakub Narebski @ 2007-02-09 9:39 UTC (permalink / raw)
To: git
[Cc: git@vger.kernel.org]
David K?gedal wrote:
> @@ -123,6 +123,7 @@
>
> ;;;###autoload
> (defun git-blame-mode (&optional arg)
> + "Minor mode for displaying Git blame"
> (interactive "P")
> (if arg
> (setq git-blame-mode (eq arg 1))
We should probably also change file description in header, and autoload
instruction in Installation: section of commentary:
;;; git-blame.el --- Minor mode for displaying Git blame -*- coding: utf-8 -*-
;;
[...]
;; If you do not want to load this package before it is necessary, you
;; can make use of the `autoload' feature, e.g. by adding to your .emacs
;; the following lines
;;
;; (autoload 'git-blame-mode "git-blame"
;; "Minor mode for displaying Git blame" t)
(docstring is needed because INTERACTIVE is _fourth_ parameter).
--
Jakub Narebski
Warsaw, Poland
ShadeHawk on #git
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH 6/7] git-blame.el: Doc fixes and cleanup
2007-02-09 9:39 ` Jakub Narebski
@ 2007-02-09 11:02 ` David Kågedal
0 siblings, 0 replies; 3+ messages in thread
From: David Kågedal @ 2007-02-09 11:02 UTC (permalink / raw)
To: git; +Cc: Jakub Narebski
Jakub Narebski <jnareb@gmail.com> writes:
> [Cc: git@vger.kernel.org]
>
> David K?gedal wrote:
>
>> @@ -123,6 +123,7 @@
>>
>> ;;;###autoload
>> (defun git-blame-mode (&optional arg)
>> + "Minor mode for displaying Git blame"
>> (interactive "P")
>> (if arg
>> (setq git-blame-mode (eq arg 1))
>
> We should probably also change file description in header, and autoload
> instruction in Installation: section of commentary:
Agreed.
> ;;; git-blame.el --- Minor mode for displaying Git blame -*- coding: utf-8 -*-
> ;;
>
> [...]
>
> ;; If you do not want to load this package before it is necessary, you
> ;; can make use of the `autoload' feature, e.g. by adding to your .emacs
> ;; the following lines
> ;;
> ;; (autoload 'git-blame-mode "git-blame"
> ;; "Minor mode for displaying Git blame" t)
>
> (docstring is needed because INTERACTIVE is _fourth_ parameter).
Yes? Of course you need the doc string here, since the file isn't
loaded yet.
--
David Kågedal
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2007-02-09 11:03 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-02-09 8:21 [PATCH 6/7] git-blame.el: Doc fixes and cleanup David Kågedal
2007-02-09 9:39 ` Jakub Narebski
2007-02-09 11:02 ` David Kågedal
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).