Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
e494904c
Commit
e494904c
authored
May 28, 2014
by
Andreas Schwab
Browse files
* html2text.el (html2text-get-attr): Fix typo when splitting value from
attribute. (Bug#17613)
parent
9828d523
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
lisp/gnus/ChangeLog
lisp/gnus/ChangeLog
+5
-0
lisp/gnus/html2text.el
lisp/gnus/html2text.el
+1
-1
No files found.
lisp/gnus/ChangeLog
View file @
e494904c
2014-05-28 Andreas Schwab <schwab@linux-m68k.org>
* html2text.el (html2text-get-attr): Fix typo when splitting value from
attribute. (Bug#17613)
2014-05-06 Glenn Morris <rgm@gnu.org>
* gnus-fun.el (gnus-grab-cam-face):
...
...
lisp/gnus/html2text.el
View file @
e494904c
...
...
@@ -204,7 +204,7 @@ formatting, and then moved afterward.")
;; size=3
((
string-match
"[^ ]=[^ ]"
this
)
(
let
((
attr
(
nth
0
(
split-string
this
"="
)))
(
value
(
substring
prev
(
1+
(
string-match
"="
this
)))))
(
value
(
substring
this
(
1+
(
string-match
"="
this
)))))
(
setq
attr-list
(
cons
(
list
attr
value
)
attr-list
))))
;; size =3
((
string-match
"\\`=[^ ]"
this
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment