Function: tpu-kill-buffer

tpu-kill-buffer is an interactive and byte-compiled function defined in tpu-edt.el.gz.

Signature

(tpu-kill-buffer)

Documentation

Kill the current buffer.

If tpu-kill-buffers-silently is non-nil, kill modified buffers without asking.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/tpu-edt.el.gz
;;;
;;;  Buffers and Windows
;;;
(defun tpu-kill-buffer nil
  "Kill the current buffer.
If `tpu-kill-buffers-silently' is non-nil,
kill modified buffers without asking."
  (interactive)
  (if tpu-kill-buffers-silently (set-buffer-modified-p nil))
  (kill-buffer (current-buffer)))