unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: Piet van Oostrum <piet@cs.uu.nl>
Subject: CVS maxima on openmcl
Date: 22 Mar 2004 19:12:22 +0100	[thread overview]
Message-ID: <wzy8ps3g55.fsf@Ordesa.local> (raw)

openmcl returns :unspecific as result of pathname-device (which is
perfectly correct). But the cvs cersion of maxima can't deal with it and
includes UNSPECIFIC: in front of filenames.
The following patch solves this. Can somebody change this in the sources?

diff -c /Users/piet/Projects/cvs/maxima/src/init-cl.lisp.\~2\~ /Users/piet/Projects/cvs/maxima/src/init-cl.lisp
*** /Users/piet/Projects/cvs/maxima/src/init-cl.lisp.~2~	Mon Mar 22 19:09:54 2004
--- /Users/piet/Projects/cvs/maxima/src/init-cl.lisp	Sat Mar 20 23:42:22 2004
***************
*** 105,111 ****
  		 (let ((dev (pathname-device str)))
  		   (if (consp dev)
  		       (setf dev (first dev)))
! 		   (if (and dev (not (string= dev "")))
  		       (concatenate 'string
  				    (string-right-trim 
  				     ":" dev) ":")
--- 105,111 ----
  		 (let ((dev (pathname-device str)))
  		   (if (consp dev)
  		       (setf dev (first dev)))
! 		   (if (and dev (not (eq dev :unspecific)) (not (string= dev "")))
  		       (concatenate 'string
  				    (string-right-trim 
  				     ":" dev) ":")

-- 
Piet van Oostrum <piet@cs.uu.nl>
URL: http://www.cs.uu.nl/~piet [PGP]
Private email: P.van.Oostrum@hccnet.nl

             reply	other threads:[~2004-03-22 18:12 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2004-03-22 18:12 Piet van Oostrum [this message]
2004-03-22 19:39 ` CVS maxima on openmcl Piet van Oostrum

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.gnu.org/software/emacs/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=wzy8ps3g55.fsf@Ordesa.local \
    --to=piet@cs.uu.nl \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).