aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/org/org-protocol.el
diff options
context:
space:
mode:
authorPaul Eggert2011-12-14 23:24:10 -0800
committerPaul Eggert2011-12-14 23:24:10 -0800
commitbbd240ceeefcf4181aa9205f4e743b32b5c68e1f (patch)
tree957397737a8b0e76a40dfe79f191945e9f5aa09b /lisp/org/org-protocol.el
parent100d5755ed82e6c47833a3559fb0a154381d5afd (diff)
downloademacs-bbd240ceeefcf4181aa9205f4e743b32b5c68e1f.tar.gz
emacs-bbd240ceeefcf4181aa9205f4e743b32b5c68e1f.zip
Spelling fixes.
Diffstat (limited to 'lisp/org/org-protocol.el')
-rw-r--r--lisp/org/org-protocol.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/org/org-protocol.el b/lisp/org/org-protocol.el
index ca7bfe2a4d0..bbb93b07fc9 100644
--- a/lisp/org/org-protocol.el
+++ b/lisp/org/org-protocol.el
@@ -546,8 +546,8 @@ as filename."
546 (when (string-match proto fname) 546 (when (string-match proto fname)
547 (let* ((func (plist-get (cdr prolist) :function)) 547 (let* ((func (plist-get (cdr prolist) :function))
548 (greedy (plist-get (cdr prolist) :greedy)) 548 (greedy (plist-get (cdr prolist) :greedy))
549 (splitted (split-string fname proto)) 549 (split (split-string fname proto))
550 (result (if greedy restoffiles (cadr splitted)))) 550 (result (if greedy restoffiles (cadr split))))
551 (when (plist-get (cdr prolist) :kill-client) 551 (when (plist-get (cdr prolist) :kill-client)
552 (message "Greedy org-protocol handler. Killing client.") 552 (message "Greedy org-protocol handler. Killing client.")
553 (server-edit)) 553 (server-edit))