diff options
| author | Philip Kaludercic <philip.kaludercic@fau.de> | 2023-08-25 19:11:27 +0000 |
|---|---|---|
| committer | Philip Kaludercic <philip.kaludercic@fau.de> | 2023-08-25 19:11:27 +0000 |
| commit | 6cfc8ade2c242966731a5a49b2ed3e2f00f0a5d2 (patch) | |
| tree | 354270a785a9a01f04a4e09245ca00927f85c1aa | |
| parent | 259a1a0076716d2957bf2513de9334b3e49289cc (diff) | |
Invoke wget with useful arguments
| -rw-r--r-- | do-at-point.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/do-at-point.el b/do-at-point.el index 5af9a81..82d2e06 100644 --- a/do-at-point.el +++ b/do-at-point.el @@ -5,7 +5,7 @@ ;; Author: Philip Kaludercic <philipk@posteo.net> ;; Maintainer: Philip Kaludercic <philipk@posteo.net> ;; URL: https://wwwcip.cs.fau.de/~oj14ozun/src+etc/do-at-point.el -;; Version: $Id: do-at-point.el,v 1.38 2023/08/08 09:06:53 oj14ozun Exp oj14ozun $ +;; Version: $Id: do-at-point.el,v 1.39 2023/08/25 19:10:59 oj14ozun Exp oj14ozun $ ;; Package-Version: 1 ;; Package-Requires: ((emacs "26.1")) ;; Keywords: convenience @@ -109,7 +109,7 @@ of this variable.") (url (?b "Browse" ,#'browse-url) (?d "Download" ,#'(lambda (url) - (start-process "*Download*" nil "wget" url))) + (start-process "*Download*" nil "wget" "-q" "-c" url))) (?e "eww" ,#'eww-browse-url)) (number (?* "Calc" ,(lambda () (calc-embedded '(t))))) |
