all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Alan Mackenzie<none@example.invalid>
Subject: Re: C-x RET does not do what the documentation says it should
Date: Sat, 21 Feb 2004 09:57:43 +0000	[thread overview]
Message-ID: <n2a71c.q5.ln@acm.acm> (raw)
In-Reply-To: mailman.220.1077322824.340.help-gnu-emacs@gnu.org

Bingham, Jay <jay.bingham@hp.com> wrote on Fri, 20 Feb 2004 18:18:20
-0600:

> In emacs 21.2 (the win32 binary loaded from the windows page
> <http://ftp.gnu.org/gnu/windows/emacs/latest> running on a Windows32
> platform), the key sequence C-x RET now invokes spell, ....

Strange indeed!

> .... however in the info pages at the bottom of the Introduction to
> International Character Sets node (International -> International
> Chars) is the following:

[ .... ]

> Since I do not have access to an emacs 21.1 running on a UNIX platform
> I don't know if this is a bug or if the person who created the win32
> binary provided this feature.  Could someone who is running emacs 21.1
> on UNIX or any other platform where they are sure that they have not
> overridden the mapping for C-x RET please have a look at this and let
> me know what you find.

I'm running 21.1 on GNU/Linux.  C-x RET for me is a prefix key for
character set thingies, just as one would expect.

> I would sincerely like to get back the functionality that is specified
> in the info pages, if any one out there knows how to do this I would be
> truly grateful for any assistance that you could give.

Try the following in your .emacs file:  [I'm assuming you're familiar
with .emacs.  If not, feel free to ask again!].  One caveat:  I don't
have an MS-Windows system to try it out on, so none of this is tested.

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(global-unset-key "\C-x\C-m")
(global-set-key "\C-x\C-m" mule-keymap)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

If that doesn't work, try the following more long-winded version instead.

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(global-unset-key "\C-x\C-m")

(global-set-key "\C-x\C-ml" 'set-language-environment)
(global-set-key "\C-x\C-mc" 'universal-coding-system-argument)
(global-set-key "\C-x\C-m\C-\\" 'set-input-method)
(global-set-key "\C-x\C-mX" 'set-next-selection-coding-system)
(global-set-key "\C-x\C-mx" 'set-selection-coding-system)

(global-set-key "\C-x\C-mp" 'set-buffer-process-coding-system)
(global-set-key "\C-x\C-mk" 'set-keyboard-coding-system)
(global-set-key "\C-x\C-mt" 'set-terminal-coding-system)
(global-set-key "\C-x\C-mf" 'set-buffer-file-coding-system)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

-- 
Alan Mackenzie (Munich, Germany)
Email: aacm@muuc.dee; to decode, wherever there is a repeated letter
(like "aa"), remove half of them (leaving, say, "a").

       reply	other threads:[~2004-02-21  9:57 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <mailman.220.1077322824.340.help-gnu-emacs@gnu.org>
2004-02-21  9:57 ` Alan Mackenzie [this message]
2004-02-23 16:35 C-x RET does not do what the documentation says it should Bingham, Jay
  -- strict thread matches above, loose matches on Subject: below --
2004-02-21  0:18 Bingham, Jay
2004-02-21  9:52 ` Eli Zaretskii

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=n2a71c.q5.ln@acm.acm \
    --to=none@example.invalid \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.