Re: Windows Icons for GNU from Luise Fernandes logo

2005-08-05 Thread Markus Gritsch
Lennart Borgman wrote: Thanks, the icons are quite nice and easily visible, but maybe they remind more of the wiki than of Emacs? Maybe. IMO the logo and the writing looks modern, fresh, clean, ... The original Emacs splash-logo appeard always a bit baroque to me :) However, I am totally a

Re: emacs & MAXPATHLEN

2005-08-04 Thread Markus Gritsch
David Kastrup wrote: But I was talking about GNU/Linux. It seems you don't even get the difference we are talking about. Oh Boy, this discussion is getting so darn annoying, especially concerning the rudeness of some posts. I would be quite happy so see the signal to noise ratio increase o

Re: Is there any way to have a string literal that is read "raw"

2005-07-09 Thread Markus Gritsch
Richard M. Stallman wrote: Is it possible to tell Emacs not to interpret escape character in a certain string? If I have something like this: (setq str "some\thing\escaped") Can this be changed without changing the literal so that Emacs takes exactly what is in the stri

RE: Editing exportet registry files

2005-07-01 Thread gritsch
Thank you all very much for your help. With the given information and the Emacs ducumentation I have now added the following lines to my .emacs file, which makes editing exportet registry files less painfull: (setq file-coding-system-alist (append '(("\\.reg\\'" . utf-16le-with-signature))

Re: Editing exportet registry files

2005-07-01 Thread gritsch
Quoting Stefan Monnier <[EMAIL PROTECTED]>: > > when I export part of the registry on MS Windows to a .reg file, it is > > a Unicode file (little-endian) encoded with BOM (FF FE) as the first > bytes. > > You mean, it's utf-16-le > > > Is it possible to edit such a file with Emacs? > > Yes, Ca

Re: Editing exportet registry files

2005-07-01 Thread gritsch
Quoting Stefan Monnier <[EMAIL PROTECTED]>: > > when I export part of the registry on MS Windows to a .reg file, it is > > a Unicode file (little-endian) encoded with BOM (FF FE) as the first > bytes. > > You mean, it's utf-16-le > > > Is it possible to edit such a file with Emacs? > > Yes, Ca

Editing exportet registry files

2005-06-30 Thread Markus Gritsch
Hi, when I export part of the registry on MS Windows to a .reg file, it is a Unicode file (little-endian) encoded with BOM (FF FE) as the first bytes. Is it possible to edit such a file with Emacs? Kind regards, Markus ___ Emacs-devel mailing li

Emacs freezes and takes 100% CPU

2005-06-30 Thread Markus Gritsch
Hi, I think I have found a serious bug. The minimum .emacs file to reproduce the bug looks like: --- 8< --- (setq-default truncate-lines t) (custom-set-variables '(hscroll-margin 20) '(hscroll-step 1) ) --- 8< --- Setting all three variables is necessary. After starting Emacs, I chang

Re: fringe buffer-boundary bitmaps

2005-06-22 Thread Markus Gritsch
Miles Bader wrote: So I've change my personal bitmaps to help alleviate these problems: (define-fringe-bitmap 'down-arrow [32 32 32 32 32 32 168 112 32] nil nil 'bottom) (define-fringe-bitmap 'up-arrow [32 112 168 32 32 32 32 32 32] nil nil 'top) (define-fringe-bitmap 'top-left-angle

compilation-error-regexp-alist-alist modifications

2005-06-07 Thread Markus Gritsch
Hi, I like to report two problems with the default value of compilation-error-regexp-alist-alist in compile.el: * On some errors the compiler from Microsoft VisualStudio prints "fatal error" instead of just "error". The entry for msft is too restrictive and should read (msft "^\

Re: Inserting "-*- mode: ..." before turning mode on in (compilation-start)

2005-05-28 Thread Markus Gritsch
Richard Stallman wrote: Does this patch give good results? Yes, it works perfectly now. Thank you, Markus *** compile.el 20 May 2005 17:56:45 -0400 1.356 --- compile.el 28 May 2005 05:02:27 -0400 *** *** 935,946 (substitute-env-vars (match-st

Inserting "-*- mode: ..." before turning mode on in (compilation-start)

2005-05-27 Thread Markus Gritsch
Hi, It would be nice if the specified mode in (compilation-start) would get activated before inserting anything (i.e. the mode setter line) into the buffer. In a function which I added to compilation-mode-hook I change some fontification things including the used font. When (compilation-sta

Bug in ebrowse

2005-05-27 Thread Markus Gritsch
Hi, the C++ header file which led to the problematic BROWSE file reads namespace test { class Base { }; class B : public Base { }; } class A : public test::Base { }; The *Tree* is then displayed as *Globals* test test::Base test::B The class A seems to be m

Severe hscroll-margin Bug

2005-05-27 Thread Markus Gritsch
Hello, Short: When specifying a value for hscroll-margin which is quite large relative to the window width, Emacs freezes up and takes 100% CPU. Long: I have set hscroll-margin to a value of 20 so I can see the next words in a buffer before reaching the margin. I also use the "Emacs Code Br