/etc/emacs/site-start.d/50festival.el is in festival 1:2.1~release-6ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | ;; Autoloads (most probable entry points) for Festival
(autoload 'say-minor-mode "festival" "Menu for using Festival." t)
(autoload 'run-festival "festival"
"Run an inferior FESTIVAL process, input and output via buffer *festival*." t)
(autoload 'festival-say-buffer "festival"
"Send given region to festival for saying. This saves the region
as a file in /tmp and then tells festival to say that file. The
major-mode is passed as a text mode to Festival." t)
(autoload 'festival-say-region "festival"
"Send given region to festival for saying. This saves the region
as a file in /tmp and then tells festival to say that file. The
major mode is *not* passed as text mode name to Festival." t)
(autoload 'festival-say-string "festival"
"Send string to festival and have it said" t)
|