Function: smiley-buffer

smiley-buffer is an autoloaded, interactive and byte-compiled function defined in smiley.el.gz.

Signature

(smiley-buffer &optional BUFFER)

Documentation

Run smiley-region at the BUFFER, specified in the argument or interactively. If there's no argument, do it at the current buffer.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/smiley.el.gz
;;;###autoload
(defun smiley-buffer (&optional buffer)
  "Run `smiley-region' at the BUFFER, specified in the argument or
interactively.  If there's no argument, do it at the current buffer."
  (interactive "bBuffer to run smiley-region: ")
  (save-excursion
    (if buffer
	(set-buffer (get-buffer buffer)))
    (smiley-region (point-min) (point-max))))