Mercurial > hg > xemacs-beta
comparison lisp/sound.el @ 5940:c608d4b0b75e cygwin64 tip
rescue lost branch from 64bit.backup
author | Henry Thompson <ht@markup.co.uk> |
---|---|
date | Thu, 16 Dec 2021 18:48:58 +0000 |
parents | cc6f0266bc36 |
children |
comparison
equal
deleted
inserted
replaced
5928:2f34b59f451a | 5940:c608d4b0b75e |
---|---|
103 "Default directory to load a sound file from." | 103 "Default directory to load a sound file from." |
104 :group 'sound | 104 :group 'sound |
105 :type 'directory | 105 :type 'directory |
106 ) | 106 ) |
107 | 107 |
108 ;; #### This should really be a list. --hniksic | 108 ;; #### This should really be a list. --hniksic -- now it is --hst :-) |
109 (defcustom sound-extension-list (cond ((or (eq system-type 'cygwin32) | 109 (defcustom sound-extension-list (cond ((memq system-type '(cygwin32 cygwin64 windows-nt)) |
110 (eq system-type 'windows-nt)) | |
111 ".wav:") | 110 ".wav:") |
112 ((eq system-type 'linux) | 111 ((eq system-type 'linux) |
113 ".wav:.au:") | 112 ".wav:.au:") |
114 (t | 113 (t |
115 ".au:")) | 114 ".au:")) |