aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2006-04-11 16:37:27 +0000
committerStefan Monnier2006-04-11 16:37:27 +0000
commit866d0913b19ddaeec9294e5627e5453029ef2978 (patch)
tree6025be87a6c933ee81cc7fbd1f22d88eb6fcafcf
parent83163ec728c0bc129ef829aa497b49346214bf62 (diff)
downloademacs-866d0913b19ddaeec9294e5627e5453029ef2978.tar.gz
emacs-866d0913b19ddaeec9294e5627e5453029ef2978.zip
(normal-splash-screen): Fix last change so we don't wait
2 minutes if we don't show the splash screen.
-rw-r--r--lisp/ChangeLog14
-rw-r--r--lisp/startup.el20
2 files changed, 18 insertions, 16 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 5670d863f25..13f26abcbfd 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12006-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * startup.el (normal-splash-screen): Fix last change so we don't wait
4 2 minutes if we don't show the splash screen.
5
12006-04-11 Carsten Dominik <dominik@science.uva.nl> 62006-04-11 Carsten Dominik <dominik@science.uva.nl>
2 7
3 * textmodes/org.el (org-export-plain-list-max-depth) 8 * textmodes/org.el (org-export-plain-list-max-depth)
@@ -17,14 +22,14 @@
17 (org-table-create-or-convert-from-region): New commands 22 (org-table-create-or-convert-from-region): New commands
18 (org-table-toggle-vline-visibility): Command removed. 23 (org-table-toggle-vline-visibility): Command removed.
19 (org-table-convert-region): Made a command. 24 (org-table-convert-region): Made a command.
20 (orgtbl-deleta-backward-char,orgtbl-delete-char): Commands 25 (orgtbl-deleta-backward-char,orgtbl-delete-char): Remove commands.
21 removed, replaced with the normal org- functions. 26 Replace with the normal org- functions.
22 (org-self-insert-command): Don't trigger realign unnecessarily 27 (org-self-insert-command): Don't trigger realign unnecessarily
23 when blanking a field that is not full. 28 when blanking a field that is not full.
24 (org-mode): `Set buffer-invisibility-spec' for links. 29 (org-mode): `Set buffer-invisibility-spec' for links.
25 (org-activate-links2): Hide link part and only show descriptive 30 (org-activate-links2): Hide link part and only show descriptive
26 part of the link. 31 part of the link.
27 (org-insert-link): Modified for new linking system. 32 (org-insert-link): Modify for new linking system.
28 (org-store-link): Store description separately, for use by 33 (org-store-link): Store description separately, for use by
29 `org-insert-link'. 34 `org-insert-link'.
30 (org-table-align): Use `org-string-width'. 35 (org-table-align): Use `org-string-width'.
@@ -67,8 +72,7 @@
672006-04-10 Eli Zaretskii <eliz@gnu.org> 722006-04-10 Eli Zaretskii <eliz@gnu.org>
68 73
69 * international/mule-cmds.el (set-locale-environment): Fix last 74 * international/mule-cmds.el (set-locale-environment): Fix last
70 change for when the locale's preferences don't specify any 75 change for when the locale's preferences don't specify any encoding.
71 encoding.
72 76
732006-04-10 Stefan Monnier <monnier@iro.umontreal.ca> 772006-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
74 78
diff --git a/lisp/startup.el b/lisp/startup.el
index 6fdd4fa4999..907ae463462 100644
--- a/lisp/startup.el
+++ b/lisp/startup.el
@@ -1534,17 +1534,15 @@ Type \\[describe-distribution] for information on getting the latest version."))
1534 ;; Display the input that we set up in the buffer. 1534 ;; Display the input that we set up in the buffer.
1535 (set-buffer-modified-p nil) 1535 (set-buffer-modified-p nil)
1536 (goto-char (point-min)) 1536 (goto-char (point-min))
1537 (save-window-excursion 1537 (if (or (window-minibuffer-p)
1538 (condition-case nil 1538 (window-dedicated-p (selected-window)))
1539 (switch-to-buffer (current-buffer)) 1539 ;; There's no point is using pop-to-buffer since creating
1540 ;; In case we're in a dedicated or minibuffer-only window. 1540 ;; a new frame will generate enough events that the
1541 (error 1541 ;; subsequent `sit-for' will immediately return anyway.
1542 ;; There's no point is using pop-to-buffer since creating 1542 nil ;; (pop-to-buffer (current-buffer))
1543 ;; a new frame will generate enough events that the 1543 (save-window-excursion
1544 ;; subsequent `sit-for' will immediately return anyway. 1544 (switch-to-buffer (current-buffer))
1545 ;; (pop-to-buffer (current-buffer)) 1545 (sit-for 120))))
1546 ))
1547 (sit-for 120)))
1548 ;; Unwind ... ensure splash buffer is killed 1546 ;; Unwind ... ensure splash buffer is killed
1549 (kill-buffer "GNU Emacs")))) 1547 (kill-buffer "GNU Emacs"))))
1550 1548