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
fba3b4d8
Commit
fba3b4d8
authored
Oct 18, 2005
by
Peter Galbraith
Browse files
* mh-identity.el (mh-identity-field-handler): Use `assoc-ignore-case' to
compare against header field for mixed-case "From:".
parent
bd2cef66
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletion
+7
-1
lisp/mh-e/ChangeLog
lisp/mh-e/ChangeLog
+6
-0
lisp/mh-e/mh-identity.el
lisp/mh-e/mh-identity.el
+1
-1
No files found.
lisp/mh-e/ChangeLog
View file @
fba3b4d8
2005-10-17 Peter S Galbraith <psg@debian.org>
* mh-identity.el (mh-identity-field-handler): Use
`assoc-ignore-case' to compare against header field for mixed-case
"From:".
2005-10-17 Bill Wohler <wohler@newt.com>
* mh-customize.el (mh-folder-tool-bar-map): Renamed image file
...
...
lisp/mh-e/mh-identity.el
View file @
fba3b4d8
...
...
@@ -124,7 +124,7 @@ The field name is downcased. If the FIELD begins with the character
`:', then it must have a special handler defined in
`mh-identity-handlers', else return an error since it is not a valid
header field."
(
or
(
cdr
(
assoc
(
down
case
field
)
mh-identity-handlers
))
(
or
(
cdr
(
assoc
-ignore-
case
field
mh-identity-handlers
))
(
and
(
eq
(
aref
field
0
)
?:
)
(
error
"Field %s - unknown mh-identity-handler"
field
))
(
cdr
(
assoc
":default"
mh-identity-handlers
))
...
...
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