diff options
author | Glenn Morris <rgm@gnu.org> | 2020-12-01 07:50:09 -0800 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2020-12-01 07:50:09 -0800 |
commit | 6c6d06c3ee67ae876ade7f4a032da928ffeeb41f (patch) | |
tree | b98bcb001ff8d2156499dea8cfe0443d09c79d9b /lisp/net/eww.el | |
parent | 496d1fcd76778b41bccfeeac155121a4a2015274 (diff) | |
parent | 9939c435c108b099d3362ecbfa1cba6cc0bbd8f9 (diff) | |
download | emacs-6c6d06c3ee67ae876ade7f4a032da928ffeeb41f.tar.gz emacs-6c6d06c3ee67ae876ade7f4a032da928ffeeb41f.tar.bz2 emacs-6c6d06c3ee67ae876ade7f4a032da928ffeeb41f.zip |
Merge from origin/emacs-27
9939c435c1 Return the correct suffix in eww-make-unique-file-name
17fa17be3d Save bookmarks by using `write-file' (bug#12507)
2cdf1fd261 Fix filing messages when 'rmail-output-reset-deleted-flag'...
a72db8ab8b Make file copying in tramp-gvfs more robust
f31cacd1ff Revert "Fix incorrect handling of module runtime and envir...
cdc632fbe6 Fix incorrect handling of module runtime and environment p...
c9160bda78 CC Mode: Fix error in cache handling. This fixes bug #43481
Diffstat (limited to 'lisp/net/eww.el')
-rw-r--r-- | lisp/net/eww.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/net/eww.el b/lisp/net/eww.el index 0c43fc609a2..ce49e32601b 100644 --- a/lisp/net/eww.el +++ b/lisp/net/eww.el @@ -1832,7 +1832,7 @@ Use link at point if there is one, else the current page's URL." (suffix "")) (when (string-match "\\`\\(.*\\)\\([.][^.]+\\)" file) (setq stem (match-string 1 file) - suffix (match-string 2))) + suffix (match-string 2 file))) (while (file-exists-p (expand-file-name file directory)) (setq file (format "%s(%d)%s" stem count suffix)) (setq count (1+ count))) |