Variable: smiley-style

smiley-style is a customizable variable defined in smiley.el.gz.

Value

low-color

Documentation

Smiley style.

This variable was added, or its default value changed, in Emacs 23.1.

Probably introduced at or before Emacs version 28.1.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/smiley.el.gz
;; In batch mode, attributes can be unspecified.
(defcustom smiley-style (if (ignore-errors
			      (>= (face-attribute 'default :height) 160))
			    'medium
			  'low-color)
  "Smiley style."
  :type '(choice (const :tag "small, 3 colors" low-color)  ;; 13x14
		 (const :tag "medium, ~10 colors" medium)  ;; 16x16
		 (const :tag "dull, grayscale" grayscale)  ;; 14x14
                 (const :tag "emoji, full color" emoji))
  :set (lambda (symbol value)
	 (set-default symbol value)
	 (setq smiley-data-directory (smiley-directory))
	 (smiley-update-cache))
  :initialize #'custom-initialize-default
  :version "23.1") ;; No Gnus