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
36327e4f
Commit
36327e4f
authored
Dec 10, 2012
by
Glenn Morris
Browse files
* lisp/net/rcirc.el (rcirc-urls, rcirc-condition-filter): Doc fixes.
parent
a0099d31
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
4 deletions
+7
-4
lisp/ChangeLog
lisp/ChangeLog
+2
-0
lisp/net/rcirc.el
lisp/net/rcirc.el
+5
-4
No files found.
lisp/ChangeLog
View file @
36327e4f
2012-12-11 Glenn Morris <rgm@gnu.org>
* net/rcirc.el (rcirc-urls, rcirc-condition-filter): Doc fixes.
* progmodes/f90.el (f90-line-continued, f90-indent-region):
Treat preprocessor lines embedded in continuations like comments.
(f90-indent-line): Special-case preprocessor lines. (Bug#13138)
...
...
lisp/net/rcirc.el
View file @
36327e4f
...
...
@@ -406,8 +406,7 @@ will be killed."
"The channel or user associated with this buffer."
)
(
defvar
rcirc-urls
nil
"List of URLs seen in the current buffer and the position in
the buffer where the URL starts."
)
"List of URLs seen in the current buffer and their start positions."
)
(
put
'rcirc-urls
'permanent-local
t
)
(
defvar
rcirc-timeout-seconds
600
...
...
@@ -2393,9 +2392,11 @@ keywords when no KEYWORD is given."
"\\)"
)
"Regexp matching URLs. Set to nil to disable URL features in rcirc."
)
;; cf cl-remove-if-not
(
defun
rcirc-condition-filter
(
condp
lst
)
"Given a condition and a list, returns the list with elements
that do not satisfy the condition removed."
"Remove all items not satisfying condition CONDP in list LST.
CONDP is a function that takes a list element as argument and returns
non-nil if that element should be included. Returns a new list."
(
delq
nil
(
mapcar
(
lambda
(
x
)
(
and
(
funcall
condp
x
)
x
))
lst
)))
(
defun
rcirc-browse-url
(
&optional
arg
)
...
...
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