org-as-mac-chrome-get-frontmost-url: Fix to remove unneeded double quotes.
* contrib/lisp/org-mac-link.el: Fix bug: remove double quotes. TINYCHANGE Applescript returns the link and description in quotes like this: [["http://orgmode.org/worg/org-contribute.html#sec-4][How to contribute to Org?"]] The fix changes it to this: [[http://orgmode.org/worg/org-contribute.html#sec-4][How to contribute to Org?]]
This commit is contained in:
parent
8e00dbb00b
commit
22af33a015
|
@ -368,7 +368,7 @@ applications and inserting them in org documents"
|
|||
"set links to {}\n"
|
||||
"copy theResult to the end of links\n"
|
||||
"return links as string\n"))))
|
||||
(car (split-string result "[\r\n]+" t))))
|
||||
(substring (car (split-string result "[\r\n]+" t)) 1 -1)))
|
||||
|
||||
(defun org-mac-chrome-get-frontmost-url ()
|
||||
(interactive)
|
||||
|
|
Loading…
Reference in New Issue