emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] trunk r114416: Add keybinding for vc-log-incoming in vc-di


From: Xue Fuqiao
Subject: [Emacs-diffs] trunk r114416: Add keybinding for vc-log-incoming in vc-dir.
Date: Sat, 21 Sep 2013 08:16:24 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 114416
revision-id: address@hidden
parent: address@hidden
committer: Xue Fuqiao <address@hidden>
branch nick: trunk
timestamp: Sat 2013-09-21 16:16:13 +0800
message:
  Add keybinding for vc-log-incoming in vc-dir.
  
  * doc/emacs/maintaining.texi (VC Directory Commands): Add keybinding for
  vc-log-incoming in vc-dir.
  * lisp/vc/vc-dir.el (vc-dir-mode-map): Add keybinding for vc-log-incoming.
modified:
  doc/emacs/ChangeLog            changelog-20091113204419-o5vbwnq5f7feedwu-6227
  doc/emacs/maintaining.texi     
maintaining.texi-20091113204419-o5vbwnq5f7feedwu-6262
  etc/NEWS                       news-20100311060928-aoit31wvzf25yr1z-1
  lisp/ChangeLog                 changelog-20091113204419-o5vbwnq5f7feedwu-1432
  lisp/vc/vc-dir.el              vcdir.el-20091113204419-o5vbwnq5f7feedwu-8693
  lisp/vc/vc.el                  vc.el-20091113204419-o5vbwnq5f7feedwu-502
=== modified file 'doc/emacs/ChangeLog'
--- a/doc/emacs/ChangeLog       2013-09-12 12:04:18 +0000
+++ b/doc/emacs/ChangeLog       2013-09-21 08:16:13 +0000
@@ -1,3 +1,8 @@
+2013-09-21  Xue Fuqiao  <address@hidden>
+
+       * maintaining.texi (VC Directory Commands): Add keybinding for
+       vc-log-incoming in vc-dir.
+
 2013-09-12  Xue Fuqiao  <address@hidden>
 
        * text.texi (Enriched Justification): Explain values of 
default-justification.

=== modified file 'doc/emacs/maintaining.texi'
--- a/doc/emacs/maintaining.texi        2013-09-04 00:31:13 +0000
+++ b/doc/emacs/maintaining.texi        2013-09-21 08:16:13 +0000
@@ -1242,7 +1242,7 @@
 
   The VC Directory buffer also defines some single-key shortcuts for
 VC commands with the @kbd{C-x v} prefix: @kbd{=}, @kbd{+}, @kbd{l},
address@hidden, @kbd{D}, @kbd{L}, @kbd{G} and @kbd{v}.
address@hidden, @kbd{D}, @kbd{L}, @kbd{G}, @kbd{I} and @kbd{v}.
 
   For example, you can commit a set of edited files by opening a VC
 Directory buffer, where the files are listed with the @samp{edited}

=== modified file 'etc/NEWS'
--- a/etc/NEWS  2013-09-20 05:39:53 +0000
+++ b/etc/NEWS  2013-09-21 08:16:13 +0000
@@ -275,6 +275,9 @@
 *** In VC directory mode, `L' lists the change log for the current VC
 controlled tree in a window.
 
+*** In VC directory mode, `I' shows a log of changes that will be
+received with a pull operation.
+
 *** `C-x v G' (globally) and `G' (in VC directory mode) ignores a file
 under current version control system.  When called with a prefix
 argument, you can remove a file from the ignored file list.

=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2013-09-20 19:59:42 +0000
+++ b/lisp/ChangeLog    2013-09-21 08:16:13 +0000
@@ -1,3 +1,7 @@
+2013-09-21  Xue Fuqiao  <address@hidden>
+
+       * vc/vc-dir.el (vc-dir-mode-map): Add keybinding for vc-log-incoming.
+
 2013-09-20  Stefan Monnier  <address@hidden>
 
        * subr.el (internal--call-interactively): New const.

=== modified file 'lisp/vc/vc-dir.el'
--- a/lisp/vc/vc-dir.el 2013-08-04 02:59:08 +0000
+++ b/lisp/vc/vc-dir.el 2013-09-21 08:16:13 +0000
@@ -245,6 +245,7 @@
     (define-key map "+" 'vc-update)       ;; C-x v +
     (define-key map "l" 'vc-print-log)    ;; C-x v l
     (define-key map "L" 'vc-print-root-log) ;; C-x v L
+    (define-key map "I" 'vc-log-incoming)   ;; C-x v I
     ;; More confusing than helpful, probably
     ;;(define-key map "R" 'vc-revert) ;; u is taken by vc-dir-unmark.
     ;;(define-key map "A" 'vc-annotate) ;; g is taken by revert-buffer

=== modified file 'lisp/vc/vc.el'
--- a/lisp/vc/vc.el     2013-09-12 06:10:12 +0000
+++ b/lisp/vc/vc.el     2013-09-21 08:16:13 +0000
@@ -2336,7 +2336,7 @@
 ;;;###autoload
 (defun vc-log-incoming (&optional remote-location)
   "Show a log of changes that will be received with a pull operation from 
REMOTE-LOCATION.
-When called interactively with a prefix argument, prompt for REMOTE-LOCATION.."
+When called interactively with a prefix argument, prompt for REMOTE-LOCATION."
   (interactive
    (when current-prefix-arg
      (list (read-string "Remote location (empty for default): "))))


reply via email to

[Prev in Thread] Current Thread [Next in Thread]