Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
lyskom-elisp-client
lyskom-elisp-client
Commits
5d923df1
Commit
5d923df1
authored
Nov 23, 2000
by
David Byers
Browse files
Fix bug in kom-super-jump
parent
3674868d
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/ChangeLog
View file @
5d923df1
2000-11-23 David Byers <davby@ida.liu.se>
* filter.el (kom-super-jump): Check for empty subject by matching
subject againts regexp, not regexp against subject (which would be
plain wrong).
2000-11-19 Joel Rosdahl <joel@rosdahl.net>
* vars.el.in (kom-dont-check-commented-authors): Added inherit
...
...
src/filter.el
View file @
5d923df1
...
...
@@ -576,7 +576,7 @@ the current text"
(
lyskom-insert-string
'no-recipient
)
(
let
((
text
lyskom-current-subject
))
(
when
(
string-match
lyskom-current-subject
"^\\s-*$"
)
(
setq
text
""
))
(
when
(
string-match
"^\\s-*$"
lyskom-current-subject
)
(
setq
text
""
))
(
lyskom-add-filter
(
make-filter
(
list
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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