help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: About `name' in loadup.el


From: Andy Moreton
Subject: Re: About `name' in loadup.el
Date: Sun, 10 Mar 2013 20:00:38 +0000
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3.50 (windows-nt)

On Sun 10 Mar 2013, Xue Fuqiao wrote:

> On Sun, 10 Mar 2013 12:19:20 +0530
> Jambunathan K <kjambunathan@gmail.com> wrote:
>
>> Xue Fuqiao <xfq.free@gmail.com> writes:
>> 
>> >> > In lisp/loadup.el:
>> >> > 
>> >> >   (let ((name (concat "emacs-" emacs-version)))
>> >> >     (while (string-match "[^-+_.a-zA-Z0-9]+" name)
>> >> >       (setq name (concat (downcase (substring name 0 (match-beginning 
>> >> > 0)))
>> >> >                        "-"
>> >> >                        (substring name (match-end 0)))))
>> >> >     (message "Adding name %s" name)
>> >> >     (add-name-to-file "emacs" name t))
> [...]
>> >> > And when will characters other than "-+_.a-zA-Z0-9" be in
>> >> > `emacs-version'?
>> >> 
>> >> It's a 'while', not an 'if'.
>> >
>> > Can you explain it more detailed?  Do you mean `emacs-version' won't
>> > contain "-+_.a-zA-Z0-9"?
>
> [...]
>
>> So it is stripping stuff.  
>
> I see.  It makes the program more robust, isn't it?

The name is used to create a hardlink, so to avoid problems it should
only contain characters that are allowed in portable filenames. This
means removing the non-portable characters and replacing them with
something that all filesystems should be able to cope with.

    AndyM




reply via email to

[Prev in Thread] Current Thread [Next in Thread]