From: Christophe Rhodes Date: Tue, 23 Apr 2013 11:37:04 +0000 (+0100) Subject: support emacs 24 X-Git-Tag: v0.1~13 X-Git-Url: http://christophe.rhodes.io/gitweb/?p=iplayer-el.git;a=commitdiff_plain;h=fdc7d7e30e72d78e91285f0a1b0cfe3d2032daf8;ds=sidebyside support emacs 24 Well this is horrible. Now that execute-extended-command is in Lisp, using completing read, (this-command-keys-vector) ends up returing [13] for a function executed using M-x iplayer RET (rather than the more useful whole extended command key sequence). This means that storing the key sequence for the last command and trying to execute it later mostly has the effect of adding linebreaks. (The old code works if the command was invoked through a key sequence rather than through extended command; I think this suggests that execute-extended-command should be modified to update the various key variables/functions specially, like it already has been for this-command, but that is not helpful right now). So, as well, store the function name and funcall that. Oh, but wait, some of the functions dispatch on the key sequence used to invoke them (presets). So we need to pass the key sequence we were invoked with back. That means we need to have a common signature for iplayer-functions. This is all so horrible. But at least now it works with emacs24. *sigh*. --- diff --git a/iplayer.el b/iplayer.el index 33af512..1b02d16 100644 --- a/iplayer.el +++ b/iplayer.el @@ -39,7 +39,8 @@ (let ((iplayer-command-frame (car info)) (iplayer-command-window (cadr info)) (iplayer-command-buffer (caddr info)) - (keys (car (cdddr info)))) + (keys (car (cdddr info))) + (function (cadr (cdddr info)))) (when (and (frame-live-p iplayer-command-frame) (window-live-p iplayer-command-window) (buffer-live-p iplayer-command-buffer)) @@ -60,7 +61,15 @@ ;; that it works, but mine is not too much to reason ;; why; lots of other ways to try to achieve this didn't ;; in fact work. - (execute-kbd-macro keys) + (if (version< emacs-version "24") + (execute-kbd-macro keys) + ;; KLUDGE: we store the function name, which is fine, + ;; but some of our functions need to know which + ;; keystrokes were used to invoke them, so we need to + ;; pass those along, so we need to make sure that all + ;; iplayer-functions accept an optional argument, argh + ;; argh argh. + (funcall function keys)) ;; KLUDGE: and then we restore old state (select-window old-window) (select-frame old-frame) @@ -85,7 +94,7 @@ (message "Updating iPlayer cache")) (if iplayer-updating-cache-sentinel-executing (progn ,@body) - (push (list (selected-frame) (selected-window) (current-buffer) (this-command-keys-vector)) + (push (list (selected-frame) (selected-window) (current-buffer) (this-command-keys-vector) ',name) iplayer-updating-cache-sentinel-info))))) (defun get-iplayer-tree (&rest args) @@ -149,12 +158,12 @@ Used in the `iplayer-preset' command.") -(define-iplayer-command iplayer-preset (&optional prefix) +(define-iplayer-command iplayer-preset (&optional keys) "Switch display to a preset channel. The presets are defined in the variable `iplayer-presets'." - (interactive "p") - (let ((keys (this-command-keys)) + (interactive) + (let ((keys (or (and keys (concat keys)) (this-command-keys))) (presets (mapcar (lambda (x) (cons (read-kbd-macro (car x)) (cdr x))) iplayer-presets))) (cond ((= (length keys) 1) @@ -222,7 +231,7 @@ The presets are defined in the variable `iplayer-presets'." (use-local-map iplayer-mode-map) (setq major-mode 'iplayer-mode mode-name "iPlayer")) -(define-iplayer-command iplayer () +(define-iplayer-command iplayer (&optional keys) "Start the emacs iPlayer interface." (interactive) (setq mode-line-process nil) @@ -231,6 +240,5 @@ The presets are defined in the variable `iplayer-presets'." ;;;###autoload (autoload 'iplayer "iplayer" "Start the emacs iPlayer interface." t) - (provide 'iplayer) ;;; iplayer.el ends here