emacs-elpa-diffs
[Top][All Lists]
Advanced

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

[ELPA-diffs] ELPA branch, master, updated. dcf0481c7b91816815e6aa95c2491


From: Leo Liu
Subject: [ELPA-diffs] ELPA branch, master, updated. dcf0481c7b91816815e6aa95c24915289d286bbd
Date: Tue, 05 Nov 2013 09:55:18 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "ELPA".

The branch, master has been updated
       via  dcf0481c7b91816815e6aa95c24915289d286bbd (commit)
       via  4d347681285e5db46d1ed9db83120b509cd5a87d (commit)
      from  e6d6161e4c498a2ed420323181a4b425baca981b (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit dcf0481c7b91816815e6aa95c24915289d286bbd
Merge: e6d6161 4d34768
Author: Leo Liu <address@hidden>
Date:   Tue Nov 5 17:54:47 2013 +0800

    Merge branch 'master' of github.com:leoliu/ggtags


commit 4d347681285e5db46d1ed9db83120b509cd5a87d
Author: Leo Liu <address@hidden>
Date:   Tue Nov 5 17:49:20 2013 +0800

    Fix last change

diff --git a/ggtags.el b/ggtags.el
index c047d95..fb6906e 100644
--- a/ggtags.el
+++ b/ggtags.el
@@ -272,13 +272,14 @@ properly update `ggtags-mode-map'."
   (check-type root string)
   (let* ((default-directory (file-truename (file-name-as-directory root)))
          (rtags-size (nth 7 (file-attributes "GRTAGS")))
-         (has-rtags (when (and rtags-size (< rtags-size (* 32 1024 1024)))
-                      (with-demoted-errors
-                        (> (length
-                            (split-string
-                             (ggtags-process-string "gtags" "-d" "GRTAGS")
-                             "\n" t))
-                           4))))
+         (has-rtags (when rtags-size
+                      (or (> rtags-size (* 32 1024))
+                          (with-demoted-errors
+                            (> (length
+                                (split-string
+                                 (ggtags-process-string "gtags" "-d" "GRTAGS")
+                                 "\n" t))
+                               4)))))
          (oversize-p (pcase ggtags-oversize-limit
                        (`nil nil)
                        (`t t)

-----------------------------------------------------------------------

Summary of changes:
 packages/ggtags/ggtags.el |   15 ++++++++-------
 1 files changed, 8 insertions(+), 7 deletions(-)


hooks/post-receive
-- 
ELPA



reply via email to

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