Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
5708ce5e
Commit
5708ce5e
authored
Feb 11, 2011
by
Juanma Barranquero
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* net/rcirc.el (rcirc-send-ctcp): Remove spurious arg to `format'.
parent
cec2114e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
lisp/ChangeLog
lisp/ChangeLog
+4
-0
lisp/net/rcirc.el
lisp/net/rcirc.el
+1
-1
No files found.
lisp/ChangeLog
View file @
5708ce5e
2011-02-11 Juanma Barranquero <lekktu@gmail.com>
* net/rcirc.el (rcirc-send-ctcp): Remove spurious arg to `format'.
2011-02-10 Stefan Monnier <monnier@iro.umontreal.ca>
* server.el (server-process-filter): Use pcase.
...
...
lisp/net/rcirc.el
View file @
5708ce5e
...
...
@@ -720,7 +720,7 @@ Function is called with PROCESS, COMMAND, SENDER, ARGS and LINE.")
(
defun
rcirc-send-ctcp
(
process
target
request
&optional
args
)
(
let
((
args
(
if
args
(
concat
" "
args
)
""
)))
(
rcirc-send-privmsg
process
target
(
format
"\C-a%s%s\C-a"
request
args
""
))))
(
format
"\C-a%s%s\C-a"
request
args
))))
(
defun
rcirc-buffer-process
(
&optional
buffer
)
"Return the process associated with channel BUFFER.
...
...
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