Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

ntemacs-users · NT Emacs

The Yahoo! Groups Product Blog

Check it out!

Group Information

? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Messages

Advanced
Messages Help
Messages 10003 - 10032 of 16715   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
10003 Chris McMahan
cmcmahan@... Send Email
Dec 10, 1999
5:35 pm
If I understand you correctly, you want to know if a file is using DOS or Unix line endings? If this is the case, try this: ;;; set the directory separator...
10004 Chuck Siska
chuck.siska@... Send Email
Dec 10, 1999
5:43 pm
... francis -- thanks. i've been wondering the same thing. on my unix system, i notice that a file converted, via M-x set-buffer-file-coding-system, to...
10005 Zhang, Jason
Jason.Zhang@... Send Email
Dec 10, 1999
6:26 pm
Sounds like the python directory ("c:\program files\python&quot;) is not in you path. ... From: Morgan Cundiff [mailto:mcundiff@...] Sent: Friday, December 10,...
10006 Guy Gascoigne-Piggford
ggp@... Send Email
Dec 10, 1999
8:27 pm
It was the change from characters to strings that got me, the old code still executes, it just doesn't work right. Thanks for the solution. Guy ... From: Dr...
10007 Will Sargent
wsargent@... Send Email
Dec 13, 1999
8:08 am
How do I get the default cut and paste (C-w and M-w) to copy text onto the Windows clipboard, the same way that Emacs does it? Will....
10008 Lars Marius Garshol
larsga@... Send Email
Dec 13, 1999
11:24 am
* Morgan Cundiff ... Either Python is not on your path (which would be strange, since it automatically installs itself there), or you have some sort of trouble...
10009 Gian Uberto Lauri
lauri@... Send Email
Dec 13, 1999
6:23 pm
Many thanks for pointing out the bug and giving me valuable info for discovering and fixing it. It was a stupid coding error. If you want, here's the patch: ...
10010 Boyer,Galen
gboyer@... Send Email
Dec 13, 1999
6:53 pm
I have never used gnus before and the only place that I have actively used newsgroups functionality is at dejanews.com. I would, first, like to start using...
10011 Sridhar Boovaraghavan
sridhar_ml@... Send Email
Dec 13, 1999
8:33 pm
Hi, We use CVS and SSH on unix to manage source code. My main development platform is NT. Has anybody gotten Emacs, CVS, SSH working together on NT? Please...
10012 Georges KO
gko@... Send Email
Dec 14, 1999
2:33 am
Hello, How can I change the charset of the current article and redisplay it with the new charset? I receive many messages marked as being ISO-8859-1, whereas...
10013 Barney Dalton
barneyd@... Send Email
Dec 14, 1999
2:35 am
yes I have got them working together. I use a cygnus version of cvs and ssh, I can't remember exactly, but I think I had problems with the straight NT port of...
10014 jasonr@... Send Email Dec 14, 1999
10:09 am
... For mail messages: In the summary buffer, e is bound to gnus-summary-edit-article which will let you fix the Mime headers (or add them if they are not...
10015 Eric De Mund
ead@... Send Email
Dec 14, 1999
10:19 am
Andrew, ] >How can I get rid of the ^M appended to the input of some of the ] >commands I enter in my "M-x shell" subshell? ] [ .. ] ] >My environment: ] > ] >...
10016 Kemp, Steve
stevek@... Send Email
Dec 14, 1999
12:53 pm
Hi, I want to convert a large (600 character+) string into a Hex string, something like this:- "Steve" -> "0x53 0x74 0x65 0x76 0x65" I thought that I could...
10017 Enrique Castilla Cont...
ecastilla@... Send Email
Dec 14, 1999
1:56 pm
Hi. How can I tell Emacs don't wrap lines with more than 40 characters ?...
10018 Bob Duff
bobduff@... Send Email
Dec 14, 1999
2:03 pm
... and 20.10.0 comes *before* 20.4. - Bob...
10019 Charles Curley
ccurley@... Send Email
Dec 14, 1999
2:21 pm
You could convert the buffer to hexl mode, edit it, then convert back to text mode. On Tue, Dec 14, 1999 at 12:06:21PM -0000, Kemp, Steve wrote: -> Hi, -> ->...
10020 Paul Rudin
Paul_Rudin@... Send Email
Dec 14, 1999
2:33 pm
... SK> Hi, I want to convert a large (600 character+) string into a Hex string, SK> something like this:- SK> "Steve" -> "0x53 0x74 0x65 0x76 0x65" SK> I...
10021 Enrique Castilla Cont...
ecastilla@... Send Email
Dec 14, 1999
2:35 pm
... De: Enrique Castilla Contreras <ecastilla@...> Grupos de noticias: comp.emacs Fecha: martes 14 de diciembre de 1999 15:01 Asunto: How to do...
10022 Kemp, Steve
stevek@... Send Email
Dec 14, 1999
2:43 pm
... Hi, Well thats certainly an ... interesting solution. ;) The main drawback with that though is the overhead of spawning the hexl process to do the...
10023 Kemp, Steve
stevek@... Send Email
Dec 14, 1999
2:46 pm
... That is _much_ faster, (I wouldn't have come up with that because I didn't know that mapconcat existed), thanks. Running my test case through the Lisp...
10024 Paul Rudin
Paul_Rudin@... Send Email
Dec 14, 1999
3:04 pm
... SK> I'd be happy to stop there unless somebody has an even faster idea... The following might well be faster (but not nearly as nice IMHO): (require 'cl)...
10025 Andrew Innes
andrewi@... Send Email
Dec 14, 1999
3:11 pm
... Is this any better? (defun string-to-hex (str) (mapconcat (lambda (ch) (format "0x%x" ch)) (string-to-sequence str 'list) " ")) If this conses too much, it...
10026 Gian Uberto Lauri
lauri@... Send Email
Dec 14, 1999
3:27 pm
... BD> and 20.10.0 comes *before* 20.4. BD> - Bob Yep... The correct code should be on line after 18:00 Central European Time. Gian Uberto Lauri lauri@......
10027 Kemp, Steve
stevek@... Send Email
Dec 14, 1999
3:44 pm
... That appears to be the fastest yet.. ... Okay timings: Function Name Call Count Elapsed Time Average Time ================== ==========...
10028 Gian Uberto Lauri
lauri@... Send Email
Dec 14, 1999
4:01 pm
... KS> One of the other reasons for trying to write a fast conversion KS> routine was that it could then be used for re-implmenting hexl mode KS> as a...
10029 Christoph Conrad
C.Conrad@... Send Email
Dec 14, 1999
4:13 pm
... Kemp> I want to convert a large (600 character+) string Kemp> into a Hex string, something like this:- Kemp> "Steve" -> "0x53 0x74 0x65 0x76 0x65" ...
10030 Kemp, Steve
stevek@... Send Email
Dec 14, 1999
4:36 pm
... Hi, It works okay, but its slower than the snippet that AndrewI sent. I don't think any further effort is really justified, anymore.. Its running fast...
10031 Andrew Innes
andrewi@... Send Email
Dec 14, 1999
4:37 pm
... This is nearly 2.5 times as fast (when compiled), on my machine: (defun string-to-hex (str) (let* ((str (string-as-unibyte str)) (len (length str)) (result...
10032 Kemp, Steve
stevek@... Send Email
Dec 14, 1999
4:41 pm
... I'm seeing it as being slightly slower - although I haven't been byte-compiling any of the suggested routines yet. Steve ... http://GNUSoftware.com/ GNU...
Messages 10003 - 10032 of 16715   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help