Am I correct in believing that the last entry in each of these two
calls to set-console-type-image-conversion-list (from glyphs.el) is useless ?
I'm worried about that because the comment just above the last occurence
understates that it is actually important.
,----
| (defun init-glyphs ()
| ;; initialize default image types
| (if (featurep 'x)
| (set-console-type-image-conversion-list 'x
| `(,@(if (featurep 'xpm) '(("\\.xpm\\'" [xpm :file nil] 2)))
| [...]
| ("" [string :data nil] 2)
| ("" [nothing])))) <---
here
| [...]
| (if (featurep 'tty)
| (progn
| (set-console-type-image-conversion-list
| 'tty
| '(("^#define" [string :data "[xpm]"])
| [...]
| ("" [string :data nil] 2)
| ;; this last one is here for pointers and icons and such --
| ;; strings are not allowed so they will be ignored.
| ("" [nothing]))) <--
there
`-----
--
/ / _ _ Didier Verna
http://www.inf.enst.fr/~verna/
- / / - / / /_/ / EPITA / LRDE mailto:didier@lrde.epita.fr
/_/ / /_/ / /__ / 14-16 rue Voltaire Tel. +33 (1) 53 14 59 47
94276 Kremlin-Bicêtre cedex Fax. +33 (1) 44 08 01 99