"Bielawski, Richard G." <[EMAIL PROTECTED]> writes: > A few weeks ago (mark-sexp -1) changed behavior in CUA mode.
This is not related to cua mode. > > I've got this key mapped. > > (global-set-key [?\C-\M- ] '(lambda ()(interactive)(mark-sexp -1))) mark-sexp has been changed to only allow extending the region when called interactively. In Lisp code, this is specified by a second non-nil argument like this: (global-set-key [?\C-\M- ] '(lambda ()(interactive)(mark-sexp -1 t))) -- Kim F. Storm <[EMAIL PROTECTED]> http://www.cua.dk _______________________________________________ Emacs-pretest-bug mailing list [email protected] http://lists.gnu.org/mailman/listinfo/emacs-pretest-bug
