/usr/share/doc/smartdoc-elisp/README.Debian is in smartdoc-elisp 1.0-5.
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 | Unfortunely, sdoc-mode conflict to sgml-mode(psgml).
Then, auto-mode-alist NOT be set in Debian default.
You can add this your ~/.emacs for entering sdoc-mode automatically
when opening *.sdoc file.
-------------------------------------------------------------
(setq auto-mode-alist
(append '(("\\.sdoc$" . sdoc-mode)) auto-mode-alist))
(setq sgml-quick-keys t)
-------------------------------------------------------------
|