diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2011-12-14 23:24:10 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2011-12-14 23:24:10 -0800 |
commit | bbd240ceeefcf4181aa9205f4e743b32b5c68e1f (patch) | |
tree | 957397737a8b0e76a40dfe79f191945e9f5aa09b /lisp/org/org-protocol.el | |
parent | 100d5755ed82e6c47833a3559fb0a154381d5afd (diff) | |
download | emacs-bbd240ceeefcf4181aa9205f4e743b32b5c68e1f.tar.gz emacs-bbd240ceeefcf4181aa9205f4e743b32b5c68e1f.tar.bz2 emacs-bbd240ceeefcf4181aa9205f4e743b32b5c68e1f.zip |
Spelling fixes.
Diffstat (limited to 'lisp/org/org-protocol.el')
-rw-r--r-- | lisp/org/org-protocol.el | 4 |
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." (when (string-match proto fname) (let* ((func (plist-get (cdr prolist) :function)) (greedy (plist-get (cdr prolist) :greedy)) - (splitted (split-string fname proto)) - (result (if greedy restoffiles (cadr splitted)))) + (split (split-string fname proto)) + (result (if greedy restoffiles (cadr split)))) (when (plist-get (cdr prolist) :kill-client) (message "Greedy org-protocol handler. Killing client.") (server-edit)) |