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. 21f48e0df307a9e66c480f5be8916


From: Leo Liu
Subject: [ELPA-diffs] ELPA branch, master, updated. 21f48e0df307a9e66c480f5be891609161cab4c3
Date: Wed, 13 Nov 2013 09:31:21 +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  21f48e0df307a9e66c480f5be891609161cab4c3 (commit)
       via  d4cd491da2083951e96abd50e5ccdd4442f36f38 (commit)
       via  b5532cc55fee5cccbc8dddfa38c48e96f45c6ecd (commit)
      from  2a045fc08430e8256233f6a3d3f4e4761a51fb36 (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 21f48e0df307a9e66c480f5be891609161cab4c3
Merge: 2a045fc d4cd491
Author: Leo Liu <address@hidden>
Date:   Wed Nov 13 17:31:02 2013 +0800

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


commit d4cd491da2083951e96abd50e5ccdd4442f36f38
Author: Leo Liu <address@hidden>
Date:   Wed Nov 13 17:30:10 2013 +0800

    Bump version to v0.7.5 for GNU ELPA

diff --git a/ggtags.el b/ggtags.el
index c69c7d5..7122376 100644
--- a/ggtags.el
+++ b/ggtags.el
@@ -3,7 +3,7 @@
 ;; Copyright (C) 2013  Free Software Foundation, Inc.
 
 ;; Author: Leo Liu <address@hidden>
-;; Version: 0.7.4
+;; Version: 0.7.5
 ;; Keywords: tools, convenience
 ;; Created: 2013-01-29
 ;; URL: https://github.com/leoliu/ggtags

commit b5532cc55fee5cccbc8dddfa38c48e96f45c6ecd
Author: Leo Liu <address@hidden>
Date:   Tue Nov 12 23:01:33 2013 +0800

    Fix #20: Incorrect generation of relative file names

diff --git a/ggtags.el b/ggtags.el
index 7f060de..c69c7d5 100644
--- a/ggtags.el
+++ b/ggtags.el
@@ -517,11 +517,15 @@ With a prefix arg (non-nil DEFINITION) always find 
definitions."
           (and (ggtags-find-project)
                (not (ggtags-project-has-rtags (ggtags-find-project)))))
       (ggtags-find-tag 'definition name)
-    (ggtags-find-tag (format "--from-here=%d:%s"
-                             (line-number-at-pos)
-                             (shell-quote-argument
-                              (file-relative-name buffer-file-name)))
-                     name)))
+    (ggtags-find-tag
+     (format "--from-here=%d:%s"
+             (line-number-at-pos)
+             (shell-quote-argument
+              ;; Note `ggtags-global-start' binds default-directory to
+              ;; project root.
+              (file-relative-name buffer-file-name
+                                  (ggtags-current-project-root))))
+     name)))
 
 (defun ggtags-find-reference (name)
   (interactive (list (ggtags-read-tag)))

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

Summary of changes:
 packages/ggtags/ggtags.el |   16 ++++++++++------
 1 files changed, 10 insertions(+), 6 deletions(-)


hooks/post-receive
-- 
ELPA



reply via email to

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