Mercurial > emacs
annotate lisp/obsolete/rsz-mini.el @ 83029:f002bd19cc34
Prevent core dumps when the X server crashes.
src/xterm.c (x_catch_errors_unwind): Don't call XSync.
(NB: This fix might be too aggressive.)
git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-69
author | Karoly Lorentey <lorentey@elte.hu> |
---|---|
date | Mon, 26 Jan 2004 07:57:54 +0000 |
parents | f0eb34e60705 |
children | 8e5779acd195 |
rev | line source |
---|---|
39022 | 1 ;;; rsz-mini.el --- dynamically resize minibuffer to display entire contents |
2 | |
3 ;; Copyright (C) 1990, 1993, 1994, 1995, 1997 Free Software Foundation, Inc. | |
4 | |
5 ;; Author: Noah Friedman <friedman@splode.com> | |
6 ;; Roland McGrath <roland@gnu.org> | |
7 ;; Maintainer: Noah Friedman <friedman@splode.com> | |
8 ;; Keywords: minibuffer, window, frame, display | |
9 | |
53224
f0eb34e60705
tag of miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-137
Karoly Lorentey <lorentey@elte.hu>
parents:
52401
diff
changeset
|
10 ;; $Id: rsz-mini.el,v 1.2 2003/09/01 15:45:33 miles Exp $ |
39022 | 11 |
12 ;; This file is part of GNU Emacs. | |
13 | |
14 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
15 ;; it under the terms of the GNU General Public License as published by | |
16 ;; the Free Software Foundation; either version 2, or (at your option) | |
17 ;; any later version. | |
18 | |
19 ;; GNU Emacs is distributed in the hope that it will be useful, | |
20 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
21 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
22 ;; GNU General Public License for more details. | |
23 | |
24 ;; You should have received a copy of the GNU General Public License | |
25 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
26 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
27 ;; Boston, MA 02111-1307, USA. | |
28 | |
29 ;;; Commentary: | |
30 | |
31 ;; This package is obsolete. Emacs now resizes mini-windows | |
32 ;; automatically. | |
33 | |
34 ;;; Code: | |
35 | |
36 | |
37 (defgroup resize-minibuffer nil | |
38 "This customization group is obsolete." | |
39 :group 'frames) | |
40 | |
41 ;;;###autoload | |
42 (defcustom resize-minibuffer-mode nil | |
43 "*This variable is obsolete." | |
44 :type 'boolean | |
45 :group 'resize-minibuffer | |
46 :require 'rsz-mini) | |
47 | |
48 ;;;###autoload | |
49 (defcustom resize-minibuffer-window-max-height nil | |
50 "*This variable is obsolete." | |
51 :type '(choice (const nil) integer) | |
52 :group 'resize-minibuffer) | |
53 | |
54 ;;;###autoload | |
55 (defcustom resize-minibuffer-window-exactly t | |
56 "*This variable is obsolete." | |
57 :type 'boolean | |
58 :group 'resize-minibuffer) | |
59 | |
60 ;;;###autoload | |
61 (defcustom resize-minibuffer-frame nil | |
62 "*This variable is obsolete." | |
63 :type 'boolean | |
64 :group 'resize-minibuffer) | |
65 | |
66 ;;;###autoload | |
67 (defcustom resize-minibuffer-frame-max-height nil | |
68 "*This variable is obsolete.") | |
69 | |
70 ;;;###autoload | |
71 (defcustom resize-minibuffer-frame-exactly t | |
72 "*This variable is obsolete." | |
73 :type 'boolean | |
74 :group 'resize-minibuffer) | |
75 | |
76 | |
77 ;;;###autoload | |
78 (defun resize-minibuffer-mode (&optional prefix) | |
79 "This function is obsolete." | |
80 (interactive "P")) | |
81 | |
82 (provide 'rsz-mini) | |
83 | |
52401 | 84 ;;; arch-tag: 3cb85d51-ab33-4e46-8362-dd87a5d06c99 |
39022 | 85 ;;; rsz-mini.el ends here |