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

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

file-name-sans-extension returns an absolute file name when given a rela


From: Kevin Rodgers
Subject: file-name-sans-extension returns an absolute file name when given a relative path
Date: Tue, 20 Jul 2004 10:04:54 -0600
User-agent: Mozilla/5.0 (X11; U; SunOS i86pc; en-US; rv:0.9.4.1) Gecko/20020406 Netscape6/6.2.2

In GNU Emacs 21.3.1 (i386-pc-solaris2.7, X toolkit) of 2003-04-24 on briard
Important settings:
  value of $LC_ALL: nil
  value of $LC_COLLATE: nil
  value of $LC_CTYPE: nil
  value of $LC_MESSAGES: nil
  value of $LC_MONETARY: nil
  value of $LC_NUMERIC: nil
  value of $LC_TIME: nil
  value of $LANG: nil
  locale-coding-system: nil
  default-enable-multibyte-characters: t

file-name-sans-extension returns an absolute file name when given a
relative path, whereas file-name-sans-versions returns a relative file
name (as it should):

;; This buffer is for notes you don't want to save, and for Lisp evaluation.
;; If you want to create a file, visit that file with C-x C-f,
;; then enter the text in that file's own buffer.

(file-name-sans-extension "abc.xyz")
"abc"                                   ; OK

(file-name-sans-extension "foo/abc.xyz")
"/home/kevinr/foo/abc"                  ; bug

(let ((default-directory nil))
  (file-name-sans-extension "foo/abc.xyz"))
"/foo/abc"                              ; bug

(file-name-sans-versions "abc.~123.456~")
"abc"                                   ; OK

(file-name-sans-versions "foo/abc.~123.456~")
"foo/abc"                               ; OK

--
Kevin Rodgers





reply via email to

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