diff options
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/gnus/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/gnus/html2text.el | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index 3807fa9df0d..c9a23e47e6c 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2014-05-28 Andreas Schwab <schwab@linux-m68k.org> | ||
| 2 | |||
| 3 | * html2text.el (html2text-get-attr): Fix typo when splitting value from | ||
| 4 | attribute. (Bug#17613) | ||
| 5 | |||
| 1 | 2014-05-06 Glenn Morris <rgm@gnu.org> | 6 | 2014-05-06 Glenn Morris <rgm@gnu.org> |
| 2 | 7 | ||
| 3 | * gnus-fun.el (gnus-grab-cam-face): | 8 | * gnus-fun.el (gnus-grab-cam-face): |
diff --git a/lisp/gnus/html2text.el b/lisp/gnus/html2text.el index 85d40cc2bcd..78cecd92356 100644 --- a/lisp/gnus/html2text.el +++ b/lisp/gnus/html2text.el | |||
| @@ -204,7 +204,7 @@ formatting, and then moved afterward.") | |||
| 204 | ;; size=3 | 204 | ;; size=3 |
| 205 | ((string-match "[^ ]=[^ ]" this) | 205 | ((string-match "[^ ]=[^ ]" this) |
| 206 | (let ((attr (nth 0 (split-string this "="))) | 206 | (let ((attr (nth 0 (split-string this "="))) |
| 207 | (value (substring prev (1+ (string-match "=" this))))) | 207 | (value (substring this (1+ (string-match "=" this))))) |
| 208 | (setq attr-list (cons (list attr value) attr-list)))) | 208 | (setq attr-list (cons (list attr value) attr-list)))) |
| 209 | ;; size =3 | 209 | ;; size =3 |
| 210 | ((string-match "\\`=[^ ]" this) | 210 | ((string-match "\\`=[^ ]" this) |