... The .emf files are picked up from "./" (current working directory) first then $search-path (See M-X describe-variables for the $search-path). $search-path...
Jon Green
jnaught@...
Jul 1, 2005 10:21 am
1509
From: Jon Green <jnaught@...> Subject: Re: [jasspa] Search path issue -- CWD, $HOME Date: Fri, 01 Jul 2005 11:21:23 +0100 Isn't exactly that dangerous...
Meino Christian Cramer
Meino.Cramer@...
Jul 1, 2005 2:22 pm
1510
Yes, I agree 100%, this is bad and I've gotten burned by it more than once and it's a real head-scratcher until you figure it out. Usually happens when...
From: Thomas Hundt <thundt@...> Subject: Re: [jasspa] Search path issue -- CWD, $HOME Date: Fri, 01 Jul 2005 08:35:20 -0700 Hihihihi....think of a newbie...
Meino Christian Cramer
Meino.Cramer@...
Jul 1, 2005 3:57 pm
1512
Hi, again I step into my own trap, I fear. I am currently fighting with a version of a macro of region-replace-string. My setup: One me Two frames One frame...
Meino Christian Cramer
Meino.Cramer@...
Jul 1, 2005 5:33 pm
1513
You want @ml, not $ml. $ means system variable % means user global variable # means register variable (which is probably what you should use) -- local to a...
From: Thomas Hundt <thundt@...> Subject: Re: [jasspa] mewbie question: narrowing of the unknown Date: Fri, 01 Jul 2005 11:46:23 -0700 Hi, yes, I did grep...
Meino Christian Cramer
Meino.Cramer@...
Jul 1, 2005 7:35 pm
1515
... Well after all of that I'm still not convinced of a problem under NORMAL use. Which the scenario that we use. For a normal install then the macros are...
The problem is not when one creates macros in the out-of-the-way .../macros directory; the problem is when one creates macros in one's HOME directory or some...
Hi, for the region aware replace-string macro I want to access the history ("previous replace-string entries") from within that macro. I have grepped through...
Meino Christian Cramer
Meino.Cramer@...
Jul 2, 2005 4:51 am
1518
Forget grepping the html documentation. Let Windows do it for you: Install the me.hlp file (Windows help file), open it, and use the Search>Find feature...
From: Thomas Hundt <thundt@...> Subject: Re: [jasspa] Accessing history entries of replace-string from within a macro Date: Sat, 02 Jul 2005 00:04:51...
Meino Christian Cramer
Meino.Cramer@...
Jul 2, 2005 9:01 am
1520
... Help -> GeneralHelp search "HistoryGroupVariables" There are 4 references which link to a page "HistoryGroupVariables(4)" and I'm on UNIX ? Jon....
From: Jon Green <jon@...> Subject: Re: [jasspa] Accessing history entries of replace-string from within a macro Date: Sat, 02 Jul 2005 13:45:35 +0100 Ok...
Meino Christian Cramer
Meino.Cramer@...
Jul 2, 2005 1:02 pm
1523
HistoryGroupVariables is the name of a help page, not a variable or command. So, of course, Apropos is not going to give you anything. Apropos is not part of...
From: Thomas Hundt <thundt@...> Subject: Re: [jasspa] Accessing history entries of replace-string from within a macro Date: Sat, 02 Jul 2005 10:00:29...
Meino Christian Cramer
Meino.Cramer@...
Jul 2, 2005 6:13 pm
1525
Hi, as a first try I wrote the following macro just for some tests: define-macro rreplace-string 3 screen-update ; disable screen updatea 3...
Meino Christian Cramer
Meino.Cramer@...
Jul 3, 2005 4:51 am
1526
... Try this Jon. ; Replace a string in the region. As this is a simple replace string then it ; is not necessary to update the screen as the replace-string is...
From: Jon Green <jon@...> Subject: Re: [jasspa] region-aware macro construction Date: Sun, 03 Jul 2005 12:48:34 +0100 Hi Jon ! Thanks a lot! But....what...
Meino Christian Cramer
Meino.Cramer@...
Jul 3, 2005 1:26 pm
1528
... Why do you need it ? The only thing that it will do is flicker the screen. Screen update will effectivelly flush any outstanding updates to the screen, but...
From: Jon Green <jon@...> Subject: Re: [jasspa] region-aware macro construction Date: Sun, 03 Jul 2005 16:19:51 +0100 Hi Jon, ... Hrmrm..then I...
Meino Christian Cramer
Meino.Cramer@...
Jul 3, 2005 3:58 pm
1530
... macros will not update the screen unless they are forced. If you run the macro and get to the prompt and then issue a ^L then you see the pending changes...
By forced, Jon meant by calling screen-update; using !force will not up-date the screen. Steve...
Steven Phillips
bill@...
Jul 3, 2005 10:08 pm
1534
That is correct. Steve...
Steven Phillips
bill@...
Jul 3, 2005 10:24 pm
1535
Hi, (as so often... :) I am trying to get one macro, which I am writing to work. According that I have question: Suppose you have the following text fo...
Meino Christian Cramer
Meino.Cramer@...
Jul 8, 2005 3:50 am
1536
... The narrow command works on lines, not part of lines, i.e. if I set the mark half way along this line and then did forward-line then 4 narrow-buffer the...
Phillips, Steven
sphillips@...
Jul 8, 2005 6:45 am
1537
Hi, I have a longish file consisting of two rows of commands, ordered like that (but a lot more entries!) a g b h c i d j e k f l Now I want to become the file...