]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/vc/vc-git.el (vc-git-grep): Disable pager.
authorMitchel Humpherys <mitch.special@gmail.com>
Tue, 1 Oct 2013 15:34:14 +0000 (11:34 -0400)
committerStefan Monnier <monnier@iro.umontreal.ca>
Tue, 1 Oct 2013 15:34:14 +0000 (11:34 -0400)
lisp/ChangeLog
lisp/vc/vc-git.el

index 0115f9d0cf49387cd27581aef02c436cd3318a80..facdb2304d61eda26e2236902cc0df2a40d01d5b 100644 (file)
@@ -1,3 +1,7 @@
+2013-10-01  Mitchel Humpherys  <mitch.special@gmail.com>  (tiny change)
+
+       * vc/vc-git.el (vc-git-grep): Disable pager.
+
 2013-10-01  Dmitry Gutov  <dgutov@yandex.ru>
 
        * emacs-lisp/package.el (package-buffer-info, describe-package-1):
 
 2013-09-30  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
 
-       * progmodes/octave.el (inferior-octave-startup-file): Prefer
-       ~/.emacs.d/init_octave.m.
+       * progmodes/octave.el (inferior-octave-startup-file):
+       Prefer ~/.emacs.d/init_octave.m.
 
 2013-09-29  Dmitry Gutov  <dgutov@yandex.ru>
 
-       * emacs-lisp/package.el (package-desc-from-define): Accept
-       additional arguments as plist, convert it to an alist and store it
-       in the `extras' slot.
+       * emacs-lisp/package.el (package-desc-from-define):
+       Accept additional arguments as plist, convert them to an alist and store
+       them in the `extras' slot.
        (package-generate-description-file): Convert extras alist back to
        plist and append to the `define-package' form arguments.
        (package--alist-to-plist): New function.
@@ -28,8 +32,8 @@
        to `package-desc-from-define'.
        (describe-package-1): Render the homepage button (Bug#13291).
 
-       * emacs-lisp/package-x.el (package-upload-buffer-internal): Pass
-       `extras' slot from `package-desc' to `package-make-ac-desc'.
+       * emacs-lisp/package-x.el (package-upload-buffer-internal):
+       Pass `extras' slot from `package-desc' to `package-make-ac-desc'.
 
 2013-09-29  Jan Djärv  <jan.h.d@swipnet.se>
 
 2013-09-20  Xue Fuqiao  <xfq.free@gmail.com>
 
        * vc/pcvs.el (cvs-mode-ignore):
-       * vc/vc-cvs.el (vc-cvs-ignore, vc-cvs-append-to-ignore): Rename
-       cvs-append-to-ignore to vc-cvs-append-to-ignore.
+       * vc/vc-cvs.el (vc-cvs-ignore, vc-cvs-append-to-ignore):
+       Rename cvs-append-to-ignore to vc-cvs-append-to-ignore.
 
 2013-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
 
index e730db1752656a5797ed48e7c589dbf6a3f01165..1d67deeeba3dac780a8eb7d3fd3a2b997b05b93e 100644 (file)
@@ -1082,7 +1082,7 @@ This command shares argument histories with \\[rgrep] and \\[grep]."
              (setq command nil))
        (setq dir (file-name-as-directory (expand-file-name dir)))
        (setq command
-             (grep-expand-template "git grep -n -e <R> -- <F>"
+             (grep-expand-template "git --no-pager grep -n -e <R> -- <F>"
                                     regexp files))
        (when command
          (if (equal current-prefix-arg '(4))