[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [O] org-pdfview-open doesn't work anymore
From: |
Nicolas Goaziou |
Subject: |
Re: [O] org-pdfview-open doesn't work anymore |
Date: |
Fri, 05 Feb 2016 23:43:36 +0100 |
Hello,
Michael Brand <address@hidden> writes:
> + ;; FIXME: Remove this check when most default installations of
> + ;; Emacs have at least Org 9.0.
> + ((wrong-number-of-arguments invalid-function)
> + (user-error
> + (concat
> + "Please see Org News for version 9.0 about `org-file-apps', "
> + "error: "
> + (prin1-to-string err))))))
(user-error
"Please see Org News for version 9.0 about `org-file-apps', error: %S"
(nth 1 err))
You can use continuation character (i.e., "\" followed by a newline) if
string is too large.
> ((consp cmd)
> ;; FIXME: Remove this check when most default installations of
> ;; Emacs have at least Org 9.0.
> @@ -11333,7 +11342,9 @@ If the file does not exist, an error is thrown."
> ;; `org-link-frame-setup' for an old usage of `org-file-apps'
> ;; with sexp instead of a function for `cmd'.
> (user-error
> - "Please see Org News for version 9.0 about `org-file-apps'"))
> + (concat "Please see Org News for version 9.0 about `org-file-apps', "
> + "error: deprecated usage of "
> + (prin1-to-string cmd))))
Ditto.
Regards,
--
Nicolas Goaziou
- [O] org-pdfview-open doesn't work anymore, Julien Cubizolles, 2016/02/05
- Re: [O] org-pdfview-open doesn't work anymore, Michael Brand, 2016/02/05
- Re: [O] org-pdfview-open doesn't work anymore, Nicolas Goaziou, 2016/02/05
- Re: [O] org-pdfview-open doesn't work anymore, Michael Brand, 2016/02/05
- Re: [O] org-pdfview-open doesn't work anymore, Nicolas Goaziou, 2016/02/05
- Re: [O] org-pdfview-open doesn't work anymore, Michael Brand, 2016/02/05
- Re: [O] org-pdfview-open doesn't work anymore,
Nicolas Goaziou <=
- Re: [O] org-pdfview-open doesn't work anymore, Michael Brand, 2016/02/06
- Re: [O] org-pdfview-open doesn't work anymore, Nicolas Goaziou, 2016/02/06
- Re: [O] org-pdfview-open doesn't work anymore, Michael Brand, 2016/02/07
- Re: [O] org-pdfview-open doesn't work anymore, Nicolas Goaziou, 2016/02/07