Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
emacs
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
4
Issues
4
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
emacs
emacs
Commits
dbf64827
Commit
dbf64827
authored
Oct 03, 2009
by
Juanma Barranquero
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* window.c (Fdelete_window): Check WINDOW argument. (Bug#4618)
parent
1b8d1cc7
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
0 deletions
+7
-0
src/ChangeLog
src/ChangeLog
+4
-0
src/window.c
src/window.c
+3
-0
No files found.
src/ChangeLog
View file @
dbf64827
2009-10-03 Martin Rudalics <rudalics@gmx.at>
* window.c (Fdelete_window): Check WINDOW argument. (Bug#4618)
2009-10-02 Michael Albinus <michael.albinus@gmx.de>
* lisp.h (Qdelete_directory_internal): Removed, because it is not
...
...
src/window.c
View file @
dbf64827
...
...
@@ -1533,6 +1533,9 @@ Signal an error when WINDOW is the only window on its frame. */)
struct frame *f;
if (NILP (window))
window = selected_window;
else
CHECK_LIVE_WINDOW (window);
f = XFRAME (WINDOW_FRAME (XWINDOW (window)));
delete_window (window);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment