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
8b84c4d3
Commit
8b84c4d3
authored
Nov 06, 2000
by
Dave Love
Browse files
2000-10-07 15:42:59 ShengHuo ZHU <zsh@cs.rochester.edu>
* gnus-logic.el (gnus-advanced-string): Use "" if nil.
parent
6a584a18
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
lisp/gnus/gnus-logic.el
lisp/gnus/gnus-logic.el
+2
-1
No files found.
lisp/gnus/gnus-logic.el
View file @
8b84c4d3
...
...
@@ -3,6 +3,7 @@
;; Free Software Foundation, Inc.
;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
;; Maintainer: bugs@gnus.org
;; Keywords: news
;; This file is part of GNU Emacs.
...
...
@@ -145,7 +146,7 @@
(let* ((type (or type 's))
(case-fold-search (not (eq (downcase (symbol-name type))
(symbol-name type))))
(header (aref gnus-advanced-headers index)))
(header
(or
(aref gnus-advanced-headers index)
"")
))
(cond
((memq type '(r R regexp Regexp))
(string-match match header))
...
...
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