From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Tim X Newsgroups: gmane.emacs.help Subject: Re: C-u C-space Date: Thu, 10 May 2007 17:34:47 +1000 Organization: Posted via Supernews, http://www.supernews.com Message-ID: <878xbxgmi0.fsf@lion.rapttech.com.au> References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1178786022 1134 80.91.229.12 (10 May 2007 08:33:42 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 10 May 2007 08:33:42 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu May 10 10:33:41 2007 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1Hm45j-0000Na-7b for geh-help-gnu-emacs@m.gmane.org; Thu, 10 May 2007 10:33:39 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Hm4D0-0002TU-NE for geh-help-gnu-emacs@m.gmane.org; Thu, 10 May 2007 04:41:10 -0400 Original-Path: shelby.stanford.edu!headwall.stanford.edu!newsfeed.news2me.com!news.glorb.com!sn-xt-sjc-04!sn-xt-sjc-09!sn-xt-sjc-08!sn-post-sjc-01!supernews.com!corp.supernews.com!not-for-mail Original-Newsgroups: gnu.emacs.help User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.99 (gnu/linux) Cancel-Lock: sha1:4C+pXkz4siorC0phCJQM+CvsiCs= Original-X-Complaints-To: abuse@supernews.com Original-Lines: 63 Original-Xref: shelby.stanford.edu gnu.emacs.help:148261 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:43853 Archived-At: A Soare writes: > Today I learned about this. > > Now I am trying to find out what command is associated with C-u C-space. I do > > C-h k C-u . > > It appears <> . I did not arrive to press C-space. > > Is it a bug? Or I used wrong describe-key ? > No, its not a bug. C-u is the 'universal-argument, which basically means it is a type of modifier for some functions. So, what you need to do is look up what C-space does and you will probably find it states that the behavior of the function is modified by using the optional argument, which is usually refered to as the prefix argument. See below - Tim ,----[ C-h k CONTROL SPACE ] | CONTROL SPACE runs the command set-mark-command | which is an interactive compiled Lisp function in `simple.el'. | It is bound to control @ , CONTROL SPACE . | (set-mark-command ARG) | | Set the mark where point is, or jump to the mark. | Setting the mark also alters the region, which is the text | between point and mark; this is the closest equivalent in | Emacs to what some editors call the "selection". | | With no prefix argument, set the mark at point, and push the | old mark position on local mark ring. Also push the old mark on | global mark ring, if the previous mark was set in another buffer. | | Immediately repeating this command activates `transient-mark-mode' temporarily. | | With prefix argument (e.g., C-u C-@), jump to the mark, and set the mark from | position popped off the local mark ring (this does not affect the global | mark ring). Use C-x C-@ to jump to a mark popped off the global | mark ring (see `pop-global-mark'). | | If `set-mark-command-repeat-pop' is non-nil, repeating | the C-@ command with no prefix argument pops the next position | off the local (or global) mark ring and jumps there. | | With C-u C-u as prefix | argument, unconditionally set mark where point is, even if | `set-mark-command-repeat-pop' is non-nil. | | Novice Emacs Lisp programmers often try to use the mark for the wrong | purposes. See the documentation of `set-mark' for more information. | | This function is advised. | | After-advice `emacspeak': | Produce an auditory icon if possible. `---- -- tcross (at) rapttech dot com dot au