|
|
Newsgroups: gnu.emacs.help
From: al...@interport.net (Allan)
Date: 1996/10/01
Subject: Re: Summary: Emacs newbie: customizing blocks/regions
jmcb...@mailhost.tcs.tulane.edu (Jason F. McBrayer) wrote: then I "egrep"ped around the .el files for the variable "exec-directory", which was plain wrong: "/usr/local/bin/emacs/bin" Oops ^^^^ is the "exec-directory" set from the environmental variables? This is such a trivial problem, but I want to get it fixed. You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
| ||||||||||||||
Newsgroups: gnu.emacs.help
From: Kai Grossjohann <grossjoh...@ls6.informatik.uni-dortmund.de>
Date: 1996/10/02
Subject: Re: Summary: Emacs newbie: customizing blocks/regions
>>>>> Allan writes: Allan> is the "exec-directory" set from the environmental variables? Allan> I'll poke around and set it the "config.sys" accordingly. There are plenty of environment variables that Emacs evaluates. Each Allan> This is such a trivial problem, but I want to get it fixed. Emacs is usually installed in /usr/local. That means binaries in ./configure --prefix=/opt/local This replaces "/usr/local" in all of the directories with kai You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
| ||||||||||||||
Newsgroups: gnu.emacs.help
From: stric...@ph-cip.uni-koeln.de (Kai Stricker)
Date: 1996/10/01
Subject: Inverted question mark
Hello, I am using GNU Emacs 19.30.1. What can I do about it??? Thanks, Please answer by email: stric...@ph-cip.uni-koeln.de You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
| ||||||||||||||
Newsgroups: gnu.emacs.help
From: era eriksson <rerik...@cc.helsinki.fi>
Date: 1996/10/02
Subject: Re: Inverted question mark
On 1 Oct 1996 13:15:49 GMT, stric...@ph-cip.uni-koeln.de (Kai You could use iso-insert instead, which binds those to C-x 8 ? and /* era */ -- You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
| ||||||||||||||
Newsgroups: gnu.emacs.help
From: ssj...@uta.fi (Jari Aalto)
Date: 1996/10/02
Subject: Re: Keyboard and Emacs
| 28.9.96, Erik Naggum <e...@naggum.no> gnu.emacs.help I just wonder if you have any friends in your normal life... I know /jari You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
| ||||||||||||||
Newsgroups: gnu.emacs.help
From: k...@cs.umb.edu ()
Date: 1996/10/03
Subject: Re: Keyboard and Emacs
(If only the standalone version of "info" would recognize "prior", Please report texinfo bugs/lossage to bug-texi...@prep.ai.mit.edu. Adding arrow keys to standalone info would be fine thing to do. k...@cs.umb.edu You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
| ||||||||||||||
Newsgroups: gnu.emacs.help
From: kev...@ihs.com (Kevin Rodgers)
Date: 1996/10/03
Subject: Re: Keyboard and Emacs
Bill Richter (rich...@gauss.math.nwu.edu) wrote: Why not >But on a Sun running X11R5, the "Home" key does not use `Home' as its >keysym, but instead `F27'! So I need in my .emacs files >(global-set-key [f27] 'beginning-of-buffer) ;R7=Home (global-set-key [f27] [home]) ; R7 as is done in Ethan Bradford's sun4-keys.el? You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
| ||||||||||||||
Newsgroups: gnu.emacs.help
From: Erik Naggum <e...@naggum.no>
Date: 1996/10/04
Subject: Re: Keyboard and Emacs
[Bill Richter] | But on a Sun running X11R5, the "Home" key does not use `Home' as its [Kevin Rodgers] | Why not Please try (define-key function-key-map [f27] [home]) #\Erik You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
| ||||||||||||||
Newsgroups: gnu.emacs.help
From: Bill Richter <rich...@borel.math.nwu.edu>
Date: 1996/10/05
Subject: Re: Keyboard and Emacs
>> (global-set-key [f27] 'beginning-of-buffer) ;R7=Home
>> (global-set-key [f27] [home]) ; R7 Erik> Please try Erik> (define-key function-key-map [f27] [home]) Erik, can you explain what the difference is? I know is that the * Rebind the key `C-x l' to run the function `make-symbolic-link'. (global-set-key "\C-xl" 'make-symbolic-link) or (define-key global-map "\C-xl" 'make-symbolic-link) Let's compare Doc strings: global-set-key: an interactive compiled Lisp function. OK, let's check: (symbolp 'beginning-of-buffer) OK, [home] evaluates to a vector, while beginning-of-buffer is a define-key: a built-in function. DEF is anything that can be a key's definition: If KEYMAP is a sparse keymap, the pair binding KEY to DEF is added at Ah, but (commandp [home]) on the same hand, (commandp 'beginning-of-buffer) so it's also fine to use (define-key function-key-map [f27] 'beginning-of-buffer) So your syntax is legitimized while Kevin's is not. And yet what is Interactive Call After the command loop has translated a key sequence into a - Function: commandp OBJECT The interactively callable objects include strings and vectors A symbol is `commandp' if its function definition is `commandp'. and in fact both of these sexps evaluate to `beginning-of-buffer': (command-execute [home]) So Kevin's is pretty close, when you read back to (global-set-key KEY COMMAND) I thought to check this out when you got on Jari for not knowing the In Emacs Lisp, a definition is not required in order to use a That really sounds like the difference "to inform programmers." The (defconst SYMBOL INITVALUE DOCSTRING): define SYMBOL as a constant So for users to use defconst would not conform to the convention. Erik> Always sets the value of SYMBOL to the result of evalling Now maybe this is a place where it would be dumb to use `defconst' Note: do not use `defconst' for user options in libraries that are not But as they explain, for such variable you should use `defvar' However, it does make a difference for initialization: `defconst' You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
| ||||||||||||||
Newsgroups: gnu.emacs.help
From: Erik Naggum <e...@naggum.no>
Date: 1996/10/08
Subject: Re: Keyboard and Emacs
[Bill Richter] | Erik, can you explain what the difference is? Vladimir Alexiev has already covered most of this, but I'd like to point E.g., if `f27' is remapped to `home' in `function-key-map', then any other You seem to have read the entire Emacs manual, _except_ the entry for #\Erik You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
| ||||||||||||||
| Create a group - Google Groups - Google Home - Terms of Service - Privacy Policy |
| ©2010 Google |