• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/emacs-92/emacs/lisp/

Lines Matching +defs:kill +defs:append

673 If SUFFIXES is non-nil, it should be a list of suffixes to append to
1206 "Find file FILENAME, select its buffer, kill previous buffer.
1226 (unless (run-hook-with-args-until-failure 'kill-buffer-query-functions)
1229 (if (yes-or-no-p (format "Buffer %s is modified; kill anyway? "
1241 (kill-buffer " **lose**"))
1258 ;; If find-file actually finds something, we kill obuf below.
1268 (let ((kill-buffer-query-functions))
1269 (kill-buffer obuf))))))
1606 (kill-local-variable 'find-file-literally)
1609 (kill-local-variable 'buffer-file-coding-system)
1610 (kill-local-variable 'cursor-type)
1623 (kill-buffer buf)
1634 (kill-buffer buf)
1694 (append '(jka-compr-handler image-file-handler)
2570 (kill-buffer buf)
2943 (kill-local-variable 'write-file-functions)
2944 (kill-local-variable 'local-write-file-hooks)
2945 (kill-local-variable 'revert-buffer-function)
2946 (kill-local-variable 'backup-inhibited)
2951 (kill-local-variable 'vc-mode)
3633 (kill-buffer buf))
3830 ;; return always nil, so that save-buffers-kill-emacs will not move
3981 (defun append-to-file (start end filename)
4224 (kill-local-variable 'buffer-file-coding-system)
4243 (kill-local-variable 'revert-buffer-internal-hook))
4401 (kill-buffer buffer))))
4403 (defun kill-some-buffers (&optional list)
4404 "Kill some buffers. Asks the user whether to kill each one of them.
4406 specifies the list of buffers to kill, asking for approval for each one."
4422 (kill-buffer buffer)))
4988 (append
5194 (defvar kill-emacs-query-functions nil
5197 `save-buffers-kill-emacs' (\\[save-buffers-kill-emacs]) calls these functions,
5198 but `kill-emacs', the low level primitive, does not.
5199 See also `kill-emacs-hook'.")
5201 (defcustom confirm-kill-emacs nil
5211 (defun save-buffers-kill-emacs (&optional arg)
5212 "Offer to save each buffer, then kill this Emacs process.
5213 With prefix arg, silently save all file-visiting buffers, then kill."
5232 (yes-or-no-p "Active processes exist; kill them and exit anyway? "))))
5234 (run-hook-with-args-until-failure 'kill-emacs-query-functions)
5235 (or (null confirm-kill-emacs)
5236 (funcall confirm-kill-emacs "Really exit Emacs? "))
5237 (kill-emacs)))
5337 (define-key ctl-x-map "\C-c" 'save-buffers-kill-emacs)