diff options
| author | Mark Oteiza | 2017-04-27 00:04:54 -0400 |
|---|---|---|
| committer | Mark Oteiza | 2017-04-27 00:04:54 -0400 |
| commit | ee42f02c91a6d50d67e32c34a66029f5ee9a26ed (patch) | |
| tree | efcdadb57befc0eff48853f7b11ba0a56f2375ac /lisp | |
| parent | 9af2ecc36d1d15bb63fb6b28a9b5baa6990f79b8 (diff) | |
| download | emacs-ee42f02c91a6d50d67e32c34a66029f5ee9a26ed.tar.gz emacs-ee42f02c91a6d50d67e32c34a66029f5ee9a26ed.zip | |
; Fix MPC menu title
* lisp/mpc.el (mpc-mode-menu): Refer to the name of the mode, not the
file name.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/mpc.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/mpc.el b/lisp/mpc.el index e56e7e42ba8..cce752739be 100644 --- a/lisp/mpc.el +++ b/lisp/mpc.el | |||
| @@ -1131,8 +1131,8 @@ If PLAYLIST is t or nil or missing, use the main playlist." | |||
| 1131 | map)) | 1131 | map)) |
| 1132 | 1132 | ||
| 1133 | (easy-menu-define mpc-mode-menu mpc-mode-map | 1133 | (easy-menu-define mpc-mode-menu mpc-mode-map |
| 1134 | "Menu for MPC.el." | 1134 | "Menu for MPC mode." |
| 1135 | '("MPC.el" | 1135 | '("MPC" |
| 1136 | ["Play/Pause" mpc-toggle-play] ;FIXME: Add one of ⏯/▶/⏸ in there? | 1136 | ["Play/Pause" mpc-toggle-play] ;FIXME: Add one of ⏯/▶/⏸ in there? |
| 1137 | ["Next Track" mpc-next] ;FIXME: Add ⇥ there? | 1137 | ["Next Track" mpc-next] ;FIXME: Add ⇥ there? |
| 1138 | ["Previous Track" mpc-prev] ;FIXME: Add ⇤ there? | 1138 | ["Previous Track" mpc-prev] ;FIXME: Add ⇤ there? |