auctex-diffs
[Top][All Lists]
Advanced

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

[AUCTeX-diffs] GNU AUCTeX branch, master, updated. fc9a240dccd5e328142c8


From: Tassilo Horn
Subject: [AUCTeX-diffs] GNU AUCTeX branch, master, updated. fc9a240dccd5e328142c821fb4ed0dbe34bd76c7
Date: Thu, 18 Dec 2014 07:37:59 +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 "GNU AUCTeX".

The branch, master has been updated
       via  fc9a240dccd5e328142c821fb4ed0dbe34bd76c7 (commit)
      from  c7e1e47e8d7668cb63c531416d6c7f7dd5b3aa35 (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 fc9a240dccd5e328142c821fb4ed0dbe34bd76c7
Author: Tassilo Horn <address@hidden>
Date:   Thu Dec 18 08:37:28 2014 +0100

    Fix bug#19398 in TeX-evince-sync-view
    
    * tex.el (TeX-evince-sync-view): Don't URL-encode commas in the
    file name (bug#19398).

diff --git a/ChangeLog b/ChangeLog
index 10063c3..869e8c9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2014-12-18  Tassilo Horn  <address@hidden>
+
+       * tex.el (TeX-evince-sync-view): Don't URL-encode commas in the
+       file name (bug#19398).
+
 2014-12-12  Mosè Giordano  <address@hidden>
 
        * latex.el (LaTeX-environment-name-regexp): New function.
diff --git a/tex.el b/tex.el
index df312a0..af02663 100644
--- a/tex.el
+++ b/tex.el
@@ -1104,7 +1104,8 @@ of point in emacs by using Evince's DBUS API.  Used by 
default
 for the Evince viewer entry in `TeX-view-program-list-builtin' if
 the requirements are met."
   (require 'url-util)
-  (let* ((uri (concat "file://" (let ((url-unreserved-chars (cons ?/ 
url-unreserved-chars)))
+  (let* ((uri (concat "file://" (let ((url-unreserved-chars
+                                      (cons ?, (cons ?/ 
url-unreserved-chars))))
                                  (url-hexify-string
                                   (expand-file-name
                                    (concat file "." 
(TeX-output-extension)))))))

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

Summary of changes:
 ChangeLog |    5 +++++
 tex.el    |    3 ++-
 2 files changed, 7 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
GNU AUCTeX



reply via email to

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