diff options
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/mastodon-toot.el | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/lisp/mastodon-toot.el b/lisp/mastodon-toot.el index 618f734..cb8ce37 100644 --- a/lisp/mastodon-toot.el +++ b/lisp/mastodon-toot.el @@ -147,13 +147,13 @@ Set `mastodon-toot--content-warning' to nil."  (defun mastodon-toot--get-mode-kbinds ()    "Get a list of the keybindings in the mastodon-toot-mode."    (let* ((binds (copy-tree mastodon-toot-mode-map)) -	 (prefix (car (cadr binds))) -	 (bindings (remove nil (mapcar  (lambda (i) (if (listp i) i)) -					(cadr binds))))) +	       (prefix (car (cadr binds))) +	       (bindings (remove nil (mapcar (lambda (i) (if (listp i) i)) +					                               (cadr binds)))))      (mapcar (lambda (b)  	      (progn -		(setf (car b) (vector prefix (car b))) -		b)) +		      (setf (car b) (vector prefix (car b))) +		      b))  	    bindings)))  (defun mastodon-toot--format-kbind-command (cmd) | 
