diff options
| author | Stefan Monnier | 2026-03-09 10:34:05 -0400 |
|---|---|---|
| committer | Stefan Monnier | 2026-03-09 10:34:05 -0400 |
| commit | 0487d68ab9992be4fa70cfd908909001f71e66af (patch) | |
| tree | 8c93da3b94717d184f88277e277de949ecb2fb9c /lisp/org/org.el | |
| parent | 798dceb467d4ead092979822f24090c8378f8320 (diff) | |
| download | emacs-scratch/error-API.tar.gz emacs-scratch/error-API.zip | |
Diffstat (limited to 'lisp/org/org.el')
| -rw-r--r-- | lisp/org/org.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/org/org.el b/lisp/org/org.el index 433733537c5..67c7eacd270 100644 --- a/lisp/org/org.el +++ b/lisp/org/org.el | |||
| @@ -4704,7 +4704,7 @@ is available. This option applies only if FILE is a URL." | |||
| 4704 | nil)) | 4704 | nil)) |
| 4705 | (error (if noerror | 4705 | (error (if noerror |
| 4706 | (message "Org couldn't download \"%s\": %s %S" file (car error) (cdr error)) | 4706 | (message "Org couldn't download \"%s\": %s %S" file (car error) (cdr error)) |
| 4707 | (signal (car error) (cdr error))))) | 4707 | (signal error)))) |
| 4708 | (funcall (if noerror #'message #'user-error) | 4708 | (funcall (if noerror #'message #'user-error) |
| 4709 | "The remote resource %S is considered unsafe, and will not be downloaded." | 4709 | "The remote resource %S is considered unsafe, and will not be downloaded." |
| 4710 | file))) | 4710 | file))) |