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
1
Issues
1
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
ff919460
Commit
ff919460
authored
Jul 05, 2010
by
Jan D
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* xterm.c (XTring_bell, XTset_terminal_window): Fix wrong prototype.
parent
e4c8d29a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
src/ChangeLog
src/ChangeLog
+2
-0
src/xterm.c
src/xterm.c
+2
-4
No files found.
src/ChangeLog
View file @
ff919460
2010-07-05 Jan Djärv <jan.h.d@swipnet.se>
* xterm.c (XTring_bell, XTset_terminal_window): Fix wrong prototype.
* xsmfns.c (SSDATA): New macro.
(smc_save_yourself_CB, x_session_initialize): Use SSDATA for strings
passed to strlen/strcpy/strcat.
...
...
src/xterm.c
View file @
ff919460
...
...
@@ -3103,10 +3103,8 @@ XTtoggle_invisible_pointer (FRAME_PTR f, int invisible)
/* Make audible bell. */
void
XTring_bell (
void
)
XTring_bell (
struct frame *f
)
{
struct frame *f = SELECTED_FRAME ();
if (FRAME_X_DISPLAY (f))
{
#if defined (HAVE_TIMEVAL) && defined (HAVE_SELECT)
...
...
@@ -3130,7 +3128,7 @@ XTring_bell (void)
that is bounded by calls to x_update_begin and x_update_end. */
static void
XTset_terminal_window (
register
int n)
XTset_terminal_window (
struct frame *f,
int n)
{
/* This function intentionally left blank. */
}
...
...
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