diff options
author | Glenn Morris <rgm@gnu.org> | 2009-08-22 21:59:40 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2009-08-22 21:59:40 +0000 |
commit | a337468045409bc0d9179f4cdda010dbab2a5989 (patch) | |
tree | ce85d6ca33e474a2c4acb3e14160c8ff9a9bb9e3 /lisp/hippie-exp.el | |
parent | 3f12e3f4bf054763b6507577e72a55a02302ace7 (diff) | |
download | emacs-a337468045409bc0d9179f4cdda010dbab2a5989.tar.gz |
Remove code for defunct system-types emx, macos, mswindows,
unisoft-unix, vax-vms, win32, w32.
Diffstat (limited to 'lisp/hippie-exp.el')
-rw-r--r-- | lisp/hippie-exp.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/hippie-exp.el b/lisp/hippie-exp.el index 8cf18b17c06..752a61613bb 100644 --- a/lisp/hippie-exp.el +++ b/lisp/hippie-exp.el @@ -1,7 +1,7 @@ ;;; hippie-exp.el --- expand text trying various ways to find its expansion -;; Copyright (C) 1992, 2001, 2002, 2003, 2004, 2005, -;; 2006, 2007, 2008, 2009 Free Software Foundation, Inc. +;; Copyright (C) 1992, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, +;; 2009 Free Software Foundation, Inc. ;; Author: Anders Holst <aho@sans.kth.se> ;; Last change: 3 March 1998 @@ -519,7 +519,7 @@ otherwise." (defun he-concat-directory-file-name (dir-part name-part) "Try to slam together two parts of a file specification, system dependently." (cond ((null dir-part) name-part) - ((memq system-type '(ms-dos w32)) + ((eq system-type 'ms-dos) (if (and (string-match "\\\\" dir-part) (not (string-match "/" dir-part)) (= (aref name-part (1- (length name-part))) ?/)) |