(filename)
| 38 | |
| 39 | # Reference: https://lists.gnu.org/archive/html/emacs-devel/2014-09/msg00815.html |
| 40 | def _cygwin_beep(filename): |
| 41 | os.system("play-sound-file '%s' 2>/dev/null" % filename) |
| 42 | |
| 43 | def _mac_wav_play(filename): |
| 44 | os.system("afplay '%s' 2>/dev/null" % BEEP_WAV_FILENAME) |
no outgoing calls
no test coverage detected
searching dependent graphs…