diff options
| author | Paul Eggert | 2011-12-14 23:24:10 -0800 |
|---|---|---|
| committer | Paul Eggert | 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.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." | |||
| 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)) |