Start Emacs with the -Q option, and see if the problem persists by typing C-h k M-q. If it turns out that M-q is in fact bound to fill-paragraph that way, then something in your init file apparently undoes that key binding.
You could then comment out some of your customizations in the .emacs file in a "binary search" style to find which one of them is responsible for removing said key binding.
0
Eric Johnson
On
Place this line in your .emacs file and restart emacs.
Start Emacs with the
-Q
option, and see if the problem persists by typing C-h k M-q. If it turns out that M-q is in fact bound tofill-paragraph
that way, then something in your init file apparently undoes that key binding.You could then comment out some of your customizations in the .emacs file in a "binary search" style to find which one of them is responsible for removing said key binding.