From 0cc7b28b5a158f2c99b968e2acb3ede5b94dcf3b Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Sat, 29 Dec 2007 02:34:53 +0000 Subject: [PATCH] Erik Heckers fixed bug #493 Searching the installed man pages for SDL functions fails, e.g. man -k SDL_ |grep Video After investigating this I found that "makewhatis", the tool that generates the "whatis" database, reads the SDL_* man pages, but doesn't produce entries in the "whatis" database for the SDL_* man pages. After some more debugging I found the reason is a missing space. After editing SDL_Init.3(.gz) and replacing SDL_Init\- Initializes SDL with SDL_Init \- Initializes SDL everything works fine. After running "makewhatis" I can successfully do a man -k SDL_ and SDL_Init is listed in the output. --- docs/man3/SDLKey.3 | 2 +- docs/man3/SDL_ActiveEvent.3 | 2 +- docs/man3/SDL_AddTimer.3 | 2 +- docs/man3/SDL_AudioCVT.3 | 2 +- docs/man3/SDL_AudioSpec.3 | 2 +- docs/man3/SDL_BlitSurface.3 | 2 +- docs/man3/SDL_BuildAudioCVT.3 | 2 +- docs/man3/SDL_CD.3 | 2 +- docs/man3/SDL_CDClose.3 | 2 +- docs/man3/SDL_CDEject.3 | 2 +- docs/man3/SDL_CDName.3 | 2 +- docs/man3/SDL_CDNumDrives.3 | 2 +- docs/man3/SDL_CDOpen.3 | 2 +- docs/man3/SDL_CDPause.3 | 2 +- docs/man3/SDL_CDPlay.3 | 2 +- docs/man3/SDL_CDPlayTracks.3 | 2 +- docs/man3/SDL_CDResume.3 | 2 +- docs/man3/SDL_CDStatus.3 | 2 +- docs/man3/SDL_CDStop.3 | 2 +- docs/man3/SDL_CDtrack.3 | 2 +- docs/man3/SDL_CloseAudio.3 | 2 +- docs/man3/SDL_Color.3 | 2 +- docs/man3/SDL_CondBroadcast.3 | 2 +- docs/man3/SDL_CondSignal.3 | 2 +- docs/man3/SDL_CondWait.3 | 2 +- docs/man3/SDL_CondWaitTimeout.3 | 2 +- docs/man3/SDL_ConvertAudio.3 | 2 +- docs/man3/SDL_ConvertSurface.3 | 2 +- docs/man3/SDL_CreateCond.3 | 2 +- docs/man3/SDL_CreateCursor.3 | 2 +- docs/man3/SDL_CreateMutex.3 | 2 +- docs/man3/SDL_CreateRGBSurface.3 | 2 +- docs/man3/SDL_CreateRGBSurfaceFrom.3 | 2 +- docs/man3/SDL_CreateSemaphore.3 | 2 +- docs/man3/SDL_CreateThread.3 | 2 +- docs/man3/SDL_CreateYUVOverlay.3 | 2 +- docs/man3/SDL_Delay.3 | 2 +- docs/man3/SDL_DestroyCond.3 | 2 +- docs/man3/SDL_DestroyMutex.3 | 2 +- docs/man3/SDL_DestroySemaphore.3 | 2 +- docs/man3/SDL_DisplayFormat.3 | 2 +- docs/man3/SDL_DisplayFormatAlpha.3 | 2 +- docs/man3/SDL_DisplayYUVOverlay.3 | 2 +- docs/man3/SDL_EnableKeyRepeat.3 | 2 +- docs/man3/SDL_EnableUNICODE.3 | 2 +- docs/man3/SDL_Event.3 | 2 +- docs/man3/SDL_EventState.3 | 2 +- docs/man3/SDL_ExposeEvent.3 | 2 +- docs/man3/SDL_FillRect.3 | 2 +- docs/man3/SDL_Flip.3 | 2 +- docs/man3/SDL_FreeCursor.3 | 2 +- docs/man3/SDL_FreeSurface.3 | 2 +- docs/man3/SDL_FreeWAV.3 | 2 +- docs/man3/SDL_FreeYUVOverlay.3 | 2 +- docs/man3/SDL_GL_GetAttribute.3 | 2 +- docs/man3/SDL_GL_GetProcAddress.3 | 2 +- docs/man3/SDL_GL_LoadLibrary.3 | 2 +- docs/man3/SDL_GL_SetAttribute.3 | 2 +- docs/man3/SDL_GL_SwapBuffers.3 | 2 +- docs/man3/SDL_GLattr.3 | 2 +- docs/man3/SDL_GetAppState.3 | 2 +- docs/man3/SDL_GetAudioStatus.3 | 2 +- docs/man3/SDL_GetClipRect.3 | 2 +- docs/man3/SDL_GetCursor.3 | 2 +- docs/man3/SDL_GetError.3 | 2 +- docs/man3/SDL_GetEventFilter.3 | 2 +- docs/man3/SDL_GetGamma.3 | 2 +- docs/man3/SDL_GetGammaRamp.3 | 2 +- docs/man3/SDL_GetKeyName.3 | 2 +- docs/man3/SDL_GetKeyState.3 | 2 +- docs/man3/SDL_GetModState.3 | 2 +- docs/man3/SDL_GetMouseState.3 | 2 +- docs/man3/SDL_GetRGB.3 | 2 +- docs/man3/SDL_GetRGBA.3 | 2 +- docs/man3/SDL_GetRelativeMouseState.3 | 2 +- docs/man3/SDL_GetThreadID.3 | 2 +- docs/man3/SDL_GetTicks.3 | 2 +- docs/man3/SDL_GetVideoInfo.3 | 2 +- docs/man3/SDL_GetVideoSurface.3 | 2 +- docs/man3/SDL_Init.3 | 2 +- docs/man3/SDL_InitSubSystem.3 | 2 +- docs/man3/SDL_JoyAxisEvent.3 | 2 +- docs/man3/SDL_JoyBallEvent.3 | 2 +- docs/man3/SDL_JoyButtonEvent.3 | 2 +- docs/man3/SDL_JoyHatEvent.3 | 2 +- docs/man3/SDL_JoystickClose.3 | 2 +- docs/man3/SDL_JoystickEventState.3 | 2 +- docs/man3/SDL_JoystickGetAxis.3 | 2 +- docs/man3/SDL_JoystickGetBall.3 | 2 +- docs/man3/SDL_JoystickGetButton.3 | 2 +- docs/man3/SDL_JoystickGetHat.3 | 2 +- docs/man3/SDL_JoystickIndex.3 | 2 +- docs/man3/SDL_JoystickName.3 | 2 +- docs/man3/SDL_JoystickNumAxes.3 | 2 +- docs/man3/SDL_JoystickNumBalls.3 | 2 +- docs/man3/SDL_JoystickNumButtons.3 | 2 +- docs/man3/SDL_JoystickNumHats.3 | 2 +- docs/man3/SDL_JoystickOpen.3 | 2 +- docs/man3/SDL_JoystickOpened.3 | 2 +- docs/man3/SDL_JoystickUpdate.3 | 2 +- docs/man3/SDL_KeyboardEvent.3 | 2 +- docs/man3/SDL_KillThread.3 | 2 +- docs/man3/SDL_ListModes.3 | 2 +- docs/man3/SDL_LoadBMP.3 | 2 +- docs/man3/SDL_LoadWAV.3 | 2 +- docs/man3/SDL_LockAudio.3 | 2 +- docs/man3/SDL_LockSurface.3 | 2 +- docs/man3/SDL_LockYUVOverlay.3 | 2 +- docs/man3/SDL_MapRGB.3 | 2 +- docs/man3/SDL_MapRGBA.3 | 2 +- docs/man3/SDL_MixAudio.3 | 2 +- docs/man3/SDL_MouseButtonEvent.3 | 2 +- docs/man3/SDL_MouseMotionEvent.3 | 2 +- docs/man3/SDL_NumJoysticks.3 | 2 +- docs/man3/SDL_OpenAudio.3 | 2 +- docs/man3/SDL_Overlay.3 | 2 +- docs/man3/SDL_Palette.3 | 2 +- docs/man3/SDL_PauseAudio.3 | 2 +- docs/man3/SDL_PeepEvents.3 | 2 +- docs/man3/SDL_PixelFormat.3 | 2 +- docs/man3/SDL_PollEvent.3 | 2 +- docs/man3/SDL_PumpEvents.3 | 2 +- docs/man3/SDL_PushEvent.3 | 2 +- docs/man3/SDL_Quit.3 | 2 +- docs/man3/SDL_QuitEvent.3 | 2 +- docs/man3/SDL_QuitSubSystem.3 | 2 +- docs/man3/SDL_RWFromFile.3 | 2 +- docs/man3/SDL_Rect.3 | 2 +- docs/man3/SDL_RemoveTimer.3 | 2 +- docs/man3/SDL_ResizeEvent.3 | 2 +- docs/man3/SDL_SaveBMP.3 | 2 +- docs/man3/SDL_SemPost.3 | 2 +- docs/man3/SDL_SemTryWait.3 | 2 +- docs/man3/SDL_SemValue.3 | 2 +- docs/man3/SDL_SemWait.3 | 2 +- docs/man3/SDL_SemWaitTimeout.3 | 2 +- docs/man3/SDL_SetAlpha.3 | 2 +- docs/man3/SDL_SetClipRect.3 | 2 +- docs/man3/SDL_SetColorKey.3 | 2 +- docs/man3/SDL_SetColors.3 | 2 +- docs/man3/SDL_SetCursor.3 | 2 +- docs/man3/SDL_SetEventFilter.3 | 2 +- docs/man3/SDL_SetGamma.3 | 2 +- docs/man3/SDL_SetGammaRamp.3 | 2 +- docs/man3/SDL_SetModState.3 | 2 +- docs/man3/SDL_SetPalette.3 | 2 +- docs/man3/SDL_SetTimer.3 | 2 +- docs/man3/SDL_SetVideoMode.3 | 2 +- docs/man3/SDL_ShowCursor.3 | 2 +- docs/man3/SDL_Surface.3 | 2 +- docs/man3/SDL_SysWMEvent.3 | 2 +- docs/man3/SDL_ThreadID.3 | 2 +- docs/man3/SDL_UnlockAudio.3 | 2 +- docs/man3/SDL_UnlockSurface.3 | 2 +- docs/man3/SDL_UnlockYUVOverlay.3 | 2 +- docs/man3/SDL_UpdateRect.3 | 2 +- docs/man3/SDL_UpdateRects.3 | 2 +- docs/man3/SDL_UserEvent.3 | 2 +- docs/man3/SDL_VideoDriverName.3 | 2 +- docs/man3/SDL_VideoInfo.3 | 2 +- docs/man3/SDL_VideoModeOK.3 | 2 +- docs/man3/SDL_WM_GetCaption.3 | 2 +- docs/man3/SDL_WM_GrabInput.3 | 2 +- docs/man3/SDL_WM_IconifyWindow.3 | 2 +- docs/man3/SDL_WM_SetCaption.3 | 2 +- docs/man3/SDL_WM_SetIcon.3 | 2 +- docs/man3/SDL_WM_ToggleFullScreen.3 | 2 +- docs/man3/SDL_WaitEvent.3 | 2 +- docs/man3/SDL_WaitThread.3 | 2 +- docs/man3/SDL_WarpMouse.3 | 2 +- docs/man3/SDL_WasInit.3 | 2 +- docs/man3/SDL_keysym.3 | 2 +- docs/man3/SDL_mutexP.3 | 2 +- docs/man3/SDL_mutexV.3 | 2 +- 174 files changed, 174 insertions(+), 174 deletions(-) diff --git a/docs/man3/SDLKey.3 b/docs/man3/SDLKey.3 index ac4e1f315..dc74dfaac 100644 --- a/docs/man3/SDLKey.3 +++ b/docs/man3/SDLKey.3 @@ -1,6 +1,6 @@ .TH "SDLKey" "3" "Wed 11 Oct 2000, 22:28" "SDL" "SDL API Reference" .SH "NAME" -SDLKey\- SDL Keysym Definitions +SDLKey \- SDL Keysym Definitions .SH "SDL Keysym definitions" .PP \fBSDLKey ASCII value Common Name\fR diff --git a/docs/man3/SDL_ActiveEvent.3 b/docs/man3/SDL_ActiveEvent.3 index 1b8dcc1e9..487ad0697 100644 --- a/docs/man3/SDL_ActiveEvent.3 +++ b/docs/man3/SDL_ActiveEvent.3 @@ -1,6 +1,6 @@ .TH "SDL_ActiveEvent" "3" "Tue 11 Sep 2001, 22:59" "SDL" "SDL API Reference" .SH "NAME" -SDL_ActiveEvent\- Application visibility event structure +SDL_ActiveEvent \- Application visibility event structure .SH "STRUCTURE DEFINITION" .PP .nf diff --git a/docs/man3/SDL_AddTimer.3 b/docs/man3/SDL_AddTimer.3 index d2ab7866f..03a6676e9 100644 --- a/docs/man3/SDL_AddTimer.3 +++ b/docs/man3/SDL_AddTimer.3 @@ -1,6 +1,6 @@ .TH "SDL_AddTimer" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_AddTimer\- Add a timer which will call a callback after the specified number of milliseconds has elapsed\&. +SDL_AddTimer \- Add a timer which will call a callback after the specified number of milliseconds has elapsed\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_AudioCVT.3 b/docs/man3/SDL_AudioCVT.3 index d23a2c8e0..bfd82be17 100644 --- a/docs/man3/SDL_AudioCVT.3 +++ b/docs/man3/SDL_AudioCVT.3 @@ -1,6 +1,6 @@ .TH "SDL_AudioCVT" "3" "Tue 11 Sep 2001, 22:58" "SDL" "SDL API Reference" .SH "NAME" -SDL_AudioCVT\- Audio Conversion Structure +SDL_AudioCVT \- Audio Conversion Structure .SH "STRUCTURE DEFINITION" .PP .nf diff --git a/docs/man3/SDL_AudioSpec.3 b/docs/man3/SDL_AudioSpec.3 index 00b1e7368..05007deaf 100644 --- a/docs/man3/SDL_AudioSpec.3 +++ b/docs/man3/SDL_AudioSpec.3 @@ -1,6 +1,6 @@ .TH "SDL_AudioSpec" "3" "Tue 11 Sep 2001, 22:58" "SDL" "SDL API Reference" .SH "NAME" -SDL_AudioSpec\- Audio Specification Structure +SDL_AudioSpec \- Audio Specification Structure .SH "STRUCTURE DEFINITION" .PP .nf diff --git a/docs/man3/SDL_BlitSurface.3 b/docs/man3/SDL_BlitSurface.3 index 3c035a47c..f58a18155 100644 --- a/docs/man3/SDL_BlitSurface.3 +++ b/docs/man3/SDL_BlitSurface.3 @@ -1,6 +1,6 @@ .TH "SDL_BlitSurface" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_BlitSurface\- This performs a fast blit from the source surface to the destination surface\&. +SDL_BlitSurface \- This performs a fast blit from the source surface to the destination surface\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_BuildAudioCVT.3 b/docs/man3/SDL_BuildAudioCVT.3 index 7115259e8..6354ac5b5 100644 --- a/docs/man3/SDL_BuildAudioCVT.3 +++ b/docs/man3/SDL_BuildAudioCVT.3 @@ -1,6 +1,6 @@ .TH "SDL_BuildAudioCVT" "3" "Tue 11 Sep 2001, 22:58" "SDL" "SDL API Reference" .SH "NAME" -SDL_BuildAudioCVT\- Initializes a SDL_AudioCVT structure for conversion +SDL_BuildAudioCVT \- Initializes a SDL_AudioCVT structure for conversion .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_CD.3 b/docs/man3/SDL_CD.3 index c2a721223..204c3c0bf 100644 --- a/docs/man3/SDL_CD.3 +++ b/docs/man3/SDL_CD.3 @@ -1,6 +1,6 @@ .TH "SDL_CD" "3" "Tue 11 Sep 2001, 22:58" "SDL" "SDL API Reference" .SH "NAME" -SDL_CD\- CDROM Drive Information +SDL_CD \- CDROM Drive Information .SH "STRUCTURE DEFINITION" .PP .nf diff --git a/docs/man3/SDL_CDClose.3 b/docs/man3/SDL_CDClose.3 index 46b771199..84a939a90 100644 --- a/docs/man3/SDL_CDClose.3 +++ b/docs/man3/SDL_CDClose.3 @@ -1,6 +1,6 @@ .TH "SDL_CDClose" "3" "Tue 11 Sep 2001, 22:58" "SDL" "SDL API Reference" .SH "NAME" -SDL_CDClose\- Closes a SDL_CD handle +SDL_CDClose \- Closes a SDL_CD handle .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_CDEject.3 b/docs/man3/SDL_CDEject.3 index 448a8dc86..8c575deca 100644 --- a/docs/man3/SDL_CDEject.3 +++ b/docs/man3/SDL_CDEject.3 @@ -1,6 +1,6 @@ .TH "SDL_CDEject" "3" "Tue 11 Sep 2001, 22:58" "SDL" "SDL API Reference" .SH "NAME" -SDL_CDEject\- Ejects a CDROM +SDL_CDEject \- Ejects a CDROM .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_CDName.3 b/docs/man3/SDL_CDName.3 index fcae55a3d..04e4d2087 100644 --- a/docs/man3/SDL_CDName.3 +++ b/docs/man3/SDL_CDName.3 @@ -1,6 +1,6 @@ .TH "SDL_CDName" "3" "Tue 11 Sep 2001, 22:58" "SDL" "SDL API Reference" .SH "NAME" -SDL_CDName\- Returns a human-readable, system-dependent identifier for the CD-ROM\&. +SDL_CDName \- Returns a human-readable, system-dependent identifier for the CD-ROM\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_CDNumDrives.3 b/docs/man3/SDL_CDNumDrives.3 index 249b44dca..6d35389c9 100644 --- a/docs/man3/SDL_CDNumDrives.3 +++ b/docs/man3/SDL_CDNumDrives.3 @@ -1,6 +1,6 @@ .TH "SDL_CDNumDrives" "3" "Tue 11 Sep 2001, 22:58" "SDL" "SDL API Reference" .SH "NAME" -SDL_CDNumDrives\- Returns the number of CD-ROM drives on the system\&. +SDL_CDNumDrives \- Returns the number of CD-ROM drives on the system\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_CDOpen.3 b/docs/man3/SDL_CDOpen.3 index 17018fc61..4b384302e 100644 --- a/docs/man3/SDL_CDOpen.3 +++ b/docs/man3/SDL_CDOpen.3 @@ -1,6 +1,6 @@ .TH "SDL_CDOpen" "3" "Tue 11 Sep 2001, 22:58" "SDL" "SDL API Reference" .SH "NAME" -SDL_CDOpen\- Opens a CD-ROM drive for access\&. +SDL_CDOpen \- Opens a CD-ROM drive for access\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_CDPause.3 b/docs/man3/SDL_CDPause.3 index 37607b00e..6a40194c1 100644 --- a/docs/man3/SDL_CDPause.3 +++ b/docs/man3/SDL_CDPause.3 @@ -1,6 +1,6 @@ .TH "SDL_CDPause" "3" "Tue 11 Sep 2001, 22:58" "SDL" "SDL API Reference" .SH "NAME" -SDL_CDPause\- Pauses a CDROM +SDL_CDPause \- Pauses a CDROM .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_CDPlay.3 b/docs/man3/SDL_CDPlay.3 index ee2931c50..45375aae4 100644 --- a/docs/man3/SDL_CDPlay.3 +++ b/docs/man3/SDL_CDPlay.3 @@ -1,6 +1,6 @@ .TH "SDL_CDPlay" "3" "Tue 11 Sep 2001, 22:58" "SDL" "SDL API Reference" .SH "NAME" -SDL_CDPlay\- Play a CD +SDL_CDPlay \- Play a CD .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_CDPlayTracks.3 b/docs/man3/SDL_CDPlayTracks.3 index 6dd05b905..89c496c40 100644 --- a/docs/man3/SDL_CDPlayTracks.3 +++ b/docs/man3/SDL_CDPlayTracks.3 @@ -1,6 +1,6 @@ .TH "SDL_CDPlayTracks" "3" "Tue 11 Sep 2001, 22:58" "SDL" "SDL API Reference" .SH "NAME" -SDL_CDPlayTracks\- Play the given CD track(s) +SDL_CDPlayTracks \- Play the given CD track(s) .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_CDResume.3 b/docs/man3/SDL_CDResume.3 index 02052b7ff..8e64f4023 100644 --- a/docs/man3/SDL_CDResume.3 +++ b/docs/man3/SDL_CDResume.3 @@ -1,6 +1,6 @@ .TH "SDL_CDResume" "3" "Tue 11 Sep 2001, 22:58" "SDL" "SDL API Reference" .SH "NAME" -SDL_CDResume\- Resumes a CDROM +SDL_CDResume \- Resumes a CDROM .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_CDStatus.3 b/docs/man3/SDL_CDStatus.3 index 559e7df20..a13c7563b 100644 --- a/docs/man3/SDL_CDStatus.3 +++ b/docs/man3/SDL_CDStatus.3 @@ -1,6 +1,6 @@ .TH "SDL_CDStatus" "3" "Tue 11 Sep 2001, 22:58" "SDL" "SDL API Reference" .SH "NAME" -SDL_CDStatus\- Returns the current status of the given drive\&. +SDL_CDStatus \- Returns the current status of the given drive\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_CDStop.3 b/docs/man3/SDL_CDStop.3 index 7e6f038c2..19c8621c5 100644 --- a/docs/man3/SDL_CDStop.3 +++ b/docs/man3/SDL_CDStop.3 @@ -1,6 +1,6 @@ .TH "SDL_CDStop" "3" "Tue 11 Sep 2001, 22:59" "SDL" "SDL API Reference" .SH "NAME" -SDL_CDStop\- Stops a CDROM +SDL_CDStop \- Stops a CDROM .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_CDtrack.3 b/docs/man3/SDL_CDtrack.3 index 63abcf75c..eb8cb04fc 100644 --- a/docs/man3/SDL_CDtrack.3 +++ b/docs/man3/SDL_CDtrack.3 @@ -1,6 +1,6 @@ .TH "SDL_CDtrack" "3" "Tue 11 Sep 2001, 22:59" "SDL" "SDL API Reference" .SH "NAME" -SDL_CDtrack\- CD Track Information Structure +SDL_CDtrack \- CD Track Information Structure .SH "STRUCTURE DEFINITION" .PP .nf diff --git a/docs/man3/SDL_CloseAudio.3 b/docs/man3/SDL_CloseAudio.3 index 991c7e4ee..1fa83e33c 100644 --- a/docs/man3/SDL_CloseAudio.3 +++ b/docs/man3/SDL_CloseAudio.3 @@ -1,6 +1,6 @@ .TH "SDL_CloseAudio" "3" "Tue 11 Sep 2001, 22:58" "SDL" "SDL API Reference" .SH "NAME" -SDL_CloseAudio\- Shuts down audio processing and closes the audio device\&. +SDL_CloseAudio \- Shuts down audio processing and closes the audio device\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_Color.3 b/docs/man3/SDL_Color.3 index 69082d30b..83e993fae 100644 --- a/docs/man3/SDL_Color.3 +++ b/docs/man3/SDL_Color.3 @@ -1,6 +1,6 @@ .TH "SDL_Color" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_Color\- Format independent color description +SDL_Color \- Format independent color description .SH "STRUCTURE DEFINITION" .PP .nf diff --git a/docs/man3/SDL_CondBroadcast.3 b/docs/man3/SDL_CondBroadcast.3 index 8ef443da4..ded89251a 100644 --- a/docs/man3/SDL_CondBroadcast.3 +++ b/docs/man3/SDL_CondBroadcast.3 @@ -1,6 +1,6 @@ .TH "SDL_CondBroadcast" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" -SDL_CondBroadcast\- Restart all threads waiting on a condition variable +SDL_CondBroadcast \- Restart all threads waiting on a condition variable .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_CondSignal.3 b/docs/man3/SDL_CondSignal.3 index ffc068972..c9c39afe0 100644 --- a/docs/man3/SDL_CondSignal.3 +++ b/docs/man3/SDL_CondSignal.3 @@ -1,6 +1,6 @@ .TH "SDL_CondSignal" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" -SDL_CondSignal\- Restart a thread wait on a condition variable +SDL_CondSignal \- Restart a thread wait on a condition variable .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_CondWait.3 b/docs/man3/SDL_CondWait.3 index 8750bd862..61a9baef2 100644 --- a/docs/man3/SDL_CondWait.3 +++ b/docs/man3/SDL_CondWait.3 @@ -1,6 +1,6 @@ .TH "SDL_CondWait" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" -SDL_CondWait\- Wait on a condition variable +SDL_CondWait \- Wait on a condition variable .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_CondWaitTimeout.3 b/docs/man3/SDL_CondWaitTimeout.3 index 74c670a70..fc32b6599 100644 --- a/docs/man3/SDL_CondWaitTimeout.3 +++ b/docs/man3/SDL_CondWaitTimeout.3 @@ -1,6 +1,6 @@ .TH "SDL_CondWaitTimeout" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" -SDL_CondWaitTimeout\- Wait on a condition variable, with timeout +SDL_CondWaitTimeout \- Wait on a condition variable, with timeout .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_ConvertAudio.3 b/docs/man3/SDL_ConvertAudio.3 index ee51f3491..e5422ae5e 100644 --- a/docs/man3/SDL_ConvertAudio.3 +++ b/docs/man3/SDL_ConvertAudio.3 @@ -1,6 +1,6 @@ .TH "SDL_ConvertAudio" "3" "Tue 11 Sep 2001, 22:58" "SDL" "SDL API Reference" .SH "NAME" -SDL_ConvertAudio\- Convert audio data to a desired audio format\&. +SDL_ConvertAudio \- Convert audio data to a desired audio format\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_ConvertSurface.3 b/docs/man3/SDL_ConvertSurface.3 index 94b19ffa1..bc88f82f9 100644 --- a/docs/man3/SDL_ConvertSurface.3 +++ b/docs/man3/SDL_ConvertSurface.3 @@ -1,6 +1,6 @@ .TH "SDL_ConvertSurface" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_ConvertSurface\- Converts a surface to the same format as another surface\&. +SDL_ConvertSurface \- Converts a surface to the same format as another surface\&. .SH "SYNOPSIS" .PP \fB#include "SDL/SDL\&.h" diff --git a/docs/man3/SDL_CreateCond.3 b/docs/man3/SDL_CreateCond.3 index ccbf7e9e4..0302ad568 100644 --- a/docs/man3/SDL_CreateCond.3 +++ b/docs/man3/SDL_CreateCond.3 @@ -1,6 +1,6 @@ .TH "SDL_CreateCond" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" -SDL_CreateCond\- Create a condition variable +SDL_CreateCond \- Create a condition variable .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_CreateCursor.3 b/docs/man3/SDL_CreateCursor.3 index d212cd677..dc1acb437 100644 --- a/docs/man3/SDL_CreateCursor.3 +++ b/docs/man3/SDL_CreateCursor.3 @@ -1,6 +1,6 @@ .TH "SDL_CreateCursor" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_CreateCursor\- Creates a new mouse cursor\&. +SDL_CreateCursor \- Creates a new mouse cursor\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_CreateMutex.3 b/docs/man3/SDL_CreateMutex.3 index 8a2e120c3..0299ede25 100644 --- a/docs/man3/SDL_CreateMutex.3 +++ b/docs/man3/SDL_CreateMutex.3 @@ -1,6 +1,6 @@ .TH "SDL_CreateMutex" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" -SDL_CreateMutex\- Create a mutex +SDL_CreateMutex \- Create a mutex .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_CreateRGBSurface.3 b/docs/man3/SDL_CreateRGBSurface.3 index 3f0b18969..7834283be 100644 --- a/docs/man3/SDL_CreateRGBSurface.3 +++ b/docs/man3/SDL_CreateRGBSurface.3 @@ -1,6 +1,6 @@ .TH "SDL_CreateRGBSurface" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_CreateRGBSurface\- Create an empty SDL_Surface +SDL_CreateRGBSurface \- Create an empty SDL_Surface .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_CreateRGBSurfaceFrom.3 b/docs/man3/SDL_CreateRGBSurfaceFrom.3 index 067f0fa5d..558a5f421 100644 --- a/docs/man3/SDL_CreateRGBSurfaceFrom.3 +++ b/docs/man3/SDL_CreateRGBSurfaceFrom.3 @@ -1,6 +1,6 @@ .TH "SDL_CreateRGBSurfaceFrom" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_CreateRGBSurfaceFrom\- Create an SDL_Surface from pixel data +SDL_CreateRGBSurfaceFrom \- Create an SDL_Surface from pixel data .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_CreateSemaphore.3 b/docs/man3/SDL_CreateSemaphore.3 index eeeccce82..742c47c42 100644 --- a/docs/man3/SDL_CreateSemaphore.3 +++ b/docs/man3/SDL_CreateSemaphore.3 @@ -1,6 +1,6 @@ .TH "SDL_CreateSemaphore" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" -SDL_CreateSemaphore\- Creates a new semaphore and assigns an initial value to it\&. +SDL_CreateSemaphore \- Creates a new semaphore and assigns an initial value to it\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_CreateThread.3 b/docs/man3/SDL_CreateThread.3 index 9a14b7469..1b02035f2 100644 --- a/docs/man3/SDL_CreateThread.3 +++ b/docs/man3/SDL_CreateThread.3 @@ -1,6 +1,6 @@ .TH "SDL_CreateThread" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" -SDL_CreateThread\- Creates a new thread of execution that shares its parent\&'s properties\&. +SDL_CreateThread \- Creates a new thread of execution that shares its parent\&'s properties\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_CreateYUVOverlay.3 b/docs/man3/SDL_CreateYUVOverlay.3 index b89bdb38b..18d9a4da4 100644 --- a/docs/man3/SDL_CreateYUVOverlay.3 +++ b/docs/man3/SDL_CreateYUVOverlay.3 @@ -1,6 +1,6 @@ .TH "SDL_CreateYUVOverlay" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_CreateYUVOverlay\- Create a YUV video overlay +SDL_CreateYUVOverlay \- Create a YUV video overlay .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_Delay.3 b/docs/man3/SDL_Delay.3 index a89e3ca0a..ca37acc86 100644 --- a/docs/man3/SDL_Delay.3 +++ b/docs/man3/SDL_Delay.3 @@ -1,6 +1,6 @@ .TH "SDL_Delay" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_Delay\- Wait a specified number of milliseconds before returning\&. +SDL_Delay \- Wait a specified number of milliseconds before returning\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_DestroyCond.3 b/docs/man3/SDL_DestroyCond.3 index 4e002da91..e0dfa642f 100644 --- a/docs/man3/SDL_DestroyCond.3 +++ b/docs/man3/SDL_DestroyCond.3 @@ -1,6 +1,6 @@ .TH "SDL_DestroyCond" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" -SDL_DestroyCond\- Destroy a condition variable +SDL_DestroyCond \- Destroy a condition variable .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_DestroyMutex.3 b/docs/man3/SDL_DestroyMutex.3 index 97b2fcad2..6866cc4ba 100644 --- a/docs/man3/SDL_DestroyMutex.3 +++ b/docs/man3/SDL_DestroyMutex.3 @@ -1,6 +1,6 @@ .TH "SDL_DestroyMutex" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" -SDL_DestroyMutex\- Destroy a mutex +SDL_DestroyMutex \- Destroy a mutex .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_DestroySemaphore.3 b/docs/man3/SDL_DestroySemaphore.3 index 32862c9e8..1907ab8c7 100644 --- a/docs/man3/SDL_DestroySemaphore.3 +++ b/docs/man3/SDL_DestroySemaphore.3 @@ -1,6 +1,6 @@ .TH "SDL_DestroySemaphore" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" -SDL_DestroySemaphore\- Destroys a semaphore that was created by \fISDL_CreateSemaphore\fR\&. +SDL_DestroySemaphore \- Destroys a semaphore that was created by \fISDL_CreateSemaphore\fR\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_DisplayFormat.3 b/docs/man3/SDL_DisplayFormat.3 index 13eed0561..0bd1a306a 100644 --- a/docs/man3/SDL_DisplayFormat.3 +++ b/docs/man3/SDL_DisplayFormat.3 @@ -1,6 +1,6 @@ .TH "SDL_DisplayFormat" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_DisplayFormat\- Convert a surface to the display format +SDL_DisplayFormat \- Convert a surface to the display format .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_DisplayFormatAlpha.3 b/docs/man3/SDL_DisplayFormatAlpha.3 index 314a32e37..b0c568ec5 100644 --- a/docs/man3/SDL_DisplayFormatAlpha.3 +++ b/docs/man3/SDL_DisplayFormatAlpha.3 @@ -1,6 +1,6 @@ .TH "SDL_DisplayFormatAlpha" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_DisplayFormatAlpha\- Convert a surface to the display format +SDL_DisplayFormatAlpha \- Convert a surface to the display format .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_DisplayYUVOverlay.3 b/docs/man3/SDL_DisplayYUVOverlay.3 index 090611d88..ca6752261 100644 --- a/docs/man3/SDL_DisplayYUVOverlay.3 +++ b/docs/man3/SDL_DisplayYUVOverlay.3 @@ -1,6 +1,6 @@ .TH "SDL_DisplayYUVOverlay" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_DisplayYUVOverlay\- Blit the overlay to the display +SDL_DisplayYUVOverlay \- Blit the overlay to the display .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_EnableKeyRepeat.3 b/docs/man3/SDL_EnableKeyRepeat.3 index 508e21ccc..3d37ea1ba 100644 --- a/docs/man3/SDL_EnableKeyRepeat.3 +++ b/docs/man3/SDL_EnableKeyRepeat.3 @@ -1,6 +1,6 @@ .TH "SDL_EnableKeyRepeat" "3" "Tue 11 Sep 2001, 22:59" "SDL" "SDL API Reference" .SH "NAME" -SDL_EnableKeyRepeat\- Set keyboard repeat rate\&. +SDL_EnableKeyRepeat \- Set keyboard repeat rate\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_EnableUNICODE.3 b/docs/man3/SDL_EnableUNICODE.3 index 4da927ef3..0c20ba025 100644 --- a/docs/man3/SDL_EnableUNICODE.3 +++ b/docs/man3/SDL_EnableUNICODE.3 @@ -1,6 +1,6 @@ .TH "SDL_EnableUNICODE" "3" "Tue 11 Sep 2001, 22:59" "SDL" "SDL API Reference" .SH "NAME" -SDL_EnableUNICODE\- Enable UNICODE translation +SDL_EnableUNICODE \- Enable UNICODE translation .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_Event.3 b/docs/man3/SDL_Event.3 index 55bb8c096..bf2cd066d 100644 --- a/docs/man3/SDL_Event.3 +++ b/docs/man3/SDL_Event.3 @@ -1,6 +1,6 @@ .TH "SDL_Event" "3" "Tue 11 Sep 2001, 22:59" "SDL" "SDL API Reference" .SH "NAME" -SDL_Event\- General event structure +SDL_Event \- General event structure .SH "STRUCTURE DEFINITION" .PP .nf diff --git a/docs/man3/SDL_EventState.3 b/docs/man3/SDL_EventState.3 index 562a21c41..7ec5e764a 100644 --- a/docs/man3/SDL_EventState.3 +++ b/docs/man3/SDL_EventState.3 @@ -1,6 +1,6 @@ .TH "SDL_EventState" "3" "Tue 11 Sep 2001, 22:59" "SDL" "SDL API Reference" .SH "NAME" -SDL_EventState\- This function allows you to set the state of processing certain events\&. +SDL_EventState \- This function allows you to set the state of processing certain events\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_ExposeEvent.3 b/docs/man3/SDL_ExposeEvent.3 index 2c1cd1aeb..554af282d 100644 --- a/docs/man3/SDL_ExposeEvent.3 +++ b/docs/man3/SDL_ExposeEvent.3 @@ -1,6 +1,6 @@ .TH "SDL_ExposeEvent" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" -SDL_ExposeEvent\- Quit requested event +SDL_ExposeEvent \- Quit requested event .SH "STRUCTURE DEFINITION" .PP .nf diff --git a/docs/man3/SDL_FillRect.3 b/docs/man3/SDL_FillRect.3 index 923cf5921..ecb4cd2b7 100644 --- a/docs/man3/SDL_FillRect.3 +++ b/docs/man3/SDL_FillRect.3 @@ -1,6 +1,6 @@ .TH "SDL_FillRect" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_FillRect\- This function performs a fast fill of the given rectangle with some color +SDL_FillRect \- This function performs a fast fill of the given rectangle with some color .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_Flip.3 b/docs/man3/SDL_Flip.3 index 9c38ef5a6..8588c1b29 100644 --- a/docs/man3/SDL_Flip.3 +++ b/docs/man3/SDL_Flip.3 @@ -1,6 +1,6 @@ .TH "SDL_Flip" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_Flip\- Swaps screen buffers +SDL_Flip \- Swaps screen buffers .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_FreeCursor.3 b/docs/man3/SDL_FreeCursor.3 index 420dc55cf..3bceec2ae 100644 --- a/docs/man3/SDL_FreeCursor.3 +++ b/docs/man3/SDL_FreeCursor.3 @@ -1,6 +1,6 @@ .TH "SDL_FreeCursor" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_FreeCursor\- Frees a cursor created with SDL_CreateCursor\&. +SDL_FreeCursor \- Frees a cursor created with SDL_CreateCursor\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_FreeSurface.3 b/docs/man3/SDL_FreeSurface.3 index 770964f44..5306e384d 100644 --- a/docs/man3/SDL_FreeSurface.3 +++ b/docs/man3/SDL_FreeSurface.3 @@ -1,6 +1,6 @@ .TH "SDL_FreeSurface" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_FreeSurface\- Frees (deletes) a SDL_Surface +SDL_FreeSurface \- Frees (deletes) a SDL_Surface .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_FreeWAV.3 b/docs/man3/SDL_FreeWAV.3 index 7b494d7e8..30b8f5a01 100644 --- a/docs/man3/SDL_FreeWAV.3 +++ b/docs/man3/SDL_FreeWAV.3 @@ -1,6 +1,6 @@ .TH "SDL_FreeWAV" "3" "Tue 11 Sep 2001, 22:58" "SDL" "SDL API Reference" .SH "NAME" -SDL_FreeWAV\- Frees previously opened WAV data +SDL_FreeWAV \- Frees previously opened WAV data .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_FreeYUVOverlay.3 b/docs/man3/SDL_FreeYUVOverlay.3 index ea0031194..ed54e5e61 100644 --- a/docs/man3/SDL_FreeYUVOverlay.3 +++ b/docs/man3/SDL_FreeYUVOverlay.3 @@ -1,6 +1,6 @@ .TH "SDL_FreeYUVOverlay" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_FreeYUVOverlay\- Free a YUV video overlay +SDL_FreeYUVOverlay \- Free a YUV video overlay .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_GL_GetAttribute.3 b/docs/man3/SDL_GL_GetAttribute.3 index b93c8b681..56013eab6 100644 --- a/docs/man3/SDL_GL_GetAttribute.3 +++ b/docs/man3/SDL_GL_GetAttribute.3 @@ -1,6 +1,6 @@ .TH "SDL_GL_GetAttribute" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_GL_GetAttribute\- Get the value of a special SDL/OpenGL attribute +SDL_GL_GetAttribute \- Get the value of a special SDL/OpenGL attribute .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_GL_GetProcAddress.3 b/docs/man3/SDL_GL_GetProcAddress.3 index 3a34cbd52..b2cd4d35c 100644 --- a/docs/man3/SDL_GL_GetProcAddress.3 +++ b/docs/man3/SDL_GL_GetProcAddress.3 @@ -1,6 +1,6 @@ .TH "SDL_GL_GetProcAddress" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_GL_GetProcAddress\- Get the address of a GL function +SDL_GL_GetProcAddress \- Get the address of a GL function .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_GL_LoadLibrary.3 b/docs/man3/SDL_GL_LoadLibrary.3 index c532a0824..f295bc262 100644 --- a/docs/man3/SDL_GL_LoadLibrary.3 +++ b/docs/man3/SDL_GL_LoadLibrary.3 @@ -1,6 +1,6 @@ .TH "SDL_GL_LoadLibrary" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_GL_LoadLibrary\- Specify an OpenGL library +SDL_GL_LoadLibrary \- Specify an OpenGL library .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_GL_SetAttribute.3 b/docs/man3/SDL_GL_SetAttribute.3 index 2a6eeb4cc..055dacbd1 100644 --- a/docs/man3/SDL_GL_SetAttribute.3 +++ b/docs/man3/SDL_GL_SetAttribute.3 @@ -1,6 +1,6 @@ .TH "SDL_GL_SetAttribute" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_GL_SetAttribute\- Set a special SDL/OpenGL attribute +SDL_GL_SetAttribute \- Set a special SDL/OpenGL attribute .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_GL_SwapBuffers.3 b/docs/man3/SDL_GL_SwapBuffers.3 index fb785f8e0..eb7f38394 100644 --- a/docs/man3/SDL_GL_SwapBuffers.3 +++ b/docs/man3/SDL_GL_SwapBuffers.3 @@ -1,6 +1,6 @@ .TH "SDL_GL_SwapBuffers" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_GL_SwapBuffers\- Swap OpenGL framebuffers/Update Display +SDL_GL_SwapBuffers \- Swap OpenGL framebuffers/Update Display .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_GLattr.3 b/docs/man3/SDL_GLattr.3 index bb01c93d5..49ea591e0 100644 --- a/docs/man3/SDL_GLattr.3 +++ b/docs/man3/SDL_GLattr.3 @@ -1,6 +1,6 @@ .TH "SDL_GLattr" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_GLattr\- SDL GL Attributes +SDL_GLattr \- SDL GL Attributes .SH "ATTRIBUTES" .TP 20 \fBSDL_GL_RED_SIZE\fP diff --git a/docs/man3/SDL_GetAppState.3 b/docs/man3/SDL_GetAppState.3 index edc407856..c35ac3c58 100644 --- a/docs/man3/SDL_GetAppState.3 +++ b/docs/man3/SDL_GetAppState.3 @@ -1,6 +1,6 @@ .TH "SDL_GetAppState" "3" "Tue 11 Sep 2001, 22:59" "SDL" "SDL API Reference" .SH "NAME" -\fBSDL_GetAppState\fP\- Get the state of the application +\fBSDL_GetAppState\fP \- Get the state of the application .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_GetAudioStatus.3 b/docs/man3/SDL_GetAudioStatus.3 index 88a363be8..d622357e8 100644 --- a/docs/man3/SDL_GetAudioStatus.3 +++ b/docs/man3/SDL_GetAudioStatus.3 @@ -1,6 +1,6 @@ .TH "SDL_GetAudioStatus" "3" "Tue 11 Sep 2001, 22:58" "SDL" "SDL API Reference" .SH "NAME" -SDL_GetAudioStatus\- Get the current audio state +SDL_GetAudioStatus \- Get the current audio state .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_GetClipRect.3 b/docs/man3/SDL_GetClipRect.3 index cf3c7d981..ce41c6e1b 100644 --- a/docs/man3/SDL_GetClipRect.3 +++ b/docs/man3/SDL_GetClipRect.3 @@ -1,6 +1,6 @@ .TH "SDL_GetClipRect" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_GetClipRect\- Gets the clipping rectangle for a surface\&. +SDL_GetClipRect \- Gets the clipping rectangle for a surface\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_GetCursor.3 b/docs/man3/SDL_GetCursor.3 index 83b0cdddf..1a8a089ae 100644 --- a/docs/man3/SDL_GetCursor.3 +++ b/docs/man3/SDL_GetCursor.3 @@ -1,6 +1,6 @@ .TH "SDL_GetCursor" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_GetCursor\- Get the currently active mouse cursor\&. +SDL_GetCursor \- Get the currently active mouse cursor\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_GetError.3 b/docs/man3/SDL_GetError.3 index 35c2b18ee..850c78b64 100644 --- a/docs/man3/SDL_GetError.3 +++ b/docs/man3/SDL_GetError.3 @@ -1,6 +1,6 @@ .TH "SDL_GetError" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" -SDL_GetError\- Get SDL error string +SDL_GetError \- Get SDL error string .SH "SYNOPSIS" .PP \fB#include "SDL/SDL\&.h" diff --git a/docs/man3/SDL_GetEventFilter.3 b/docs/man3/SDL_GetEventFilter.3 index cf7ca52aa..7cc09940f 100644 --- a/docs/man3/SDL_GetEventFilter.3 +++ b/docs/man3/SDL_GetEventFilter.3 @@ -1,6 +1,6 @@ .TH "SDL_GetEventFilter" "3" "Tue 11 Sep 2001, 22:59" "SDL" "SDL API Reference" .SH "NAME" -SDL_GetEventFilter\- Retrieves a pointer to he event filter +SDL_GetEventFilter \- Retrieves a pointer to he event filter .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_GetGamma.3 b/docs/man3/SDL_GetGamma.3 index ce6a1f498..8115463be 100644 --- a/docs/man3/SDL_GetGamma.3 +++ b/docs/man3/SDL_GetGamma.3 @@ -1,6 +1,6 @@ .TH "SDL_GetGamma" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_GetGamma\- Gets the gamma of the display +SDL_GetGamma \- Gets the gamma of the display .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_GetGammaRamp.3 b/docs/man3/SDL_GetGammaRamp.3 index 9bf55eb17..b40e9d22a 100644 --- a/docs/man3/SDL_GetGammaRamp.3 +++ b/docs/man3/SDL_GetGammaRamp.3 @@ -1,6 +1,6 @@ .TH "SDL_GetGammaRamp" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_GetGammaRamp\- Gets the color gamma lookup tables for the display +SDL_GetGammaRamp \- Gets the color gamma lookup tables for the display .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_GetKeyName.3 b/docs/man3/SDL_GetKeyName.3 index a2632be6e..fef6c540d 100644 --- a/docs/man3/SDL_GetKeyName.3 +++ b/docs/man3/SDL_GetKeyName.3 @@ -1,6 +1,6 @@ .TH "SDL_GetKeyName" "3" "Tue 11 Sep 2001, 22:59" "SDL" "SDL API Reference" .SH "NAME" -SDL_GetKeyName\- Get the name of an SDL virtual keysym +SDL_GetKeyName \- Get the name of an SDL virtual keysym .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_GetKeyState.3 b/docs/man3/SDL_GetKeyState.3 index c4b8901b3..af6283c9c 100644 --- a/docs/man3/SDL_GetKeyState.3 +++ b/docs/man3/SDL_GetKeyState.3 @@ -1,6 +1,6 @@ .TH "SDL_GetKeyState" "3" "Tue 11 Sep 2001, 22:59" "SDL" "SDL API Reference" .SH "NAME" -SDL_GetKeyState\- Get a snapshot of the current keyboard state +SDL_GetKeyState \- Get a snapshot of the current keyboard state .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_GetModState.3 b/docs/man3/SDL_GetModState.3 index ccb230ae5..06e29cfae 100644 --- a/docs/man3/SDL_GetModState.3 +++ b/docs/man3/SDL_GetModState.3 @@ -1,6 +1,6 @@ .TH "SDL_GetModState" "3" "Tue 11 Sep 2001, 22:59" "SDL" "SDL API Reference" .SH "NAME" -SDL_GetModState\- Get the state of modifier keys\&. +SDL_GetModState \- Get the state of modifier keys\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_GetMouseState.3 b/docs/man3/SDL_GetMouseState.3 index dc47b5f30..2faf5475a 100644 --- a/docs/man3/SDL_GetMouseState.3 +++ b/docs/man3/SDL_GetMouseState.3 @@ -1,6 +1,6 @@ .TH "SDL_GetMouseState" "3" "Tue 11 Sep 2001, 22:59" "SDL" "SDL API Reference" .SH "NAME" -SDL_GetMouseState\- Retrieve the current state of the mouse +SDL_GetMouseState \- Retrieve the current state of the mouse .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_GetRGB.3 b/docs/man3/SDL_GetRGB.3 index dbae9fc41..1c837e922 100644 --- a/docs/man3/SDL_GetRGB.3 +++ b/docs/man3/SDL_GetRGB.3 @@ -1,6 +1,6 @@ .TH "SDL_GetRGB" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_GetRGB\- Get RGB values from a pixel in the specified pixel format\&. +SDL_GetRGB \- Get RGB values from a pixel in the specified pixel format\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_GetRGBA.3 b/docs/man3/SDL_GetRGBA.3 index 938f02a0a..deca513b2 100644 --- a/docs/man3/SDL_GetRGBA.3 +++ b/docs/man3/SDL_GetRGBA.3 @@ -1,6 +1,6 @@ .TH "SDL_GetRGBA" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_GetRGBA\- Get RGBA values from a pixel in the specified pixel format\&. +SDL_GetRGBA \- Get RGBA values from a pixel in the specified pixel format\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_GetRelativeMouseState.3 b/docs/man3/SDL_GetRelativeMouseState.3 index 6a58b7cfa..d37c41394 100644 --- a/docs/man3/SDL_GetRelativeMouseState.3 +++ b/docs/man3/SDL_GetRelativeMouseState.3 @@ -1,6 +1,6 @@ .TH "SDL_GetRelativeMouseState" "3" "Tue 11 Sep 2001, 22:59" "SDL" "SDL API Reference" .SH "NAME" -SDL_GetRelativeMouseState\- Retrieve the current state of the mouse +SDL_GetRelativeMouseState \- Retrieve the current state of the mouse .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_GetThreadID.3 b/docs/man3/SDL_GetThreadID.3 index 98adee76a..822d405e9 100644 --- a/docs/man3/SDL_GetThreadID.3 +++ b/docs/man3/SDL_GetThreadID.3 @@ -1,6 +1,6 @@ .TH "SDL_GetThreadID" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" -SDL_GetThreadID\- Get the SDL thread ID of a SDL_Thread +SDL_GetThreadID \- Get the SDL thread ID of a SDL_Thread .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_GetTicks.3 b/docs/man3/SDL_GetTicks.3 index 8d8b3d25d..2ae1ca129 100644 --- a/docs/man3/SDL_GetTicks.3 +++ b/docs/man3/SDL_GetTicks.3 @@ -1,6 +1,6 @@ .TH "SDL_GetTicks" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_GetTicks\- Get the number of milliseconds since the SDL library initialization\&. +SDL_GetTicks \- Get the number of milliseconds since the SDL library initialization\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_GetVideoInfo.3 b/docs/man3/SDL_GetVideoInfo.3 index 3f3d432c3..8ce031fed 100644 --- a/docs/man3/SDL_GetVideoInfo.3 +++ b/docs/man3/SDL_GetVideoInfo.3 @@ -1,6 +1,6 @@ .TH "SDL_GetVideoInfo" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_GetVideoInfo\- returns a pointer to information about the video hardware +SDL_GetVideoInfo \- returns a pointer to information about the video hardware .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_GetVideoSurface.3 b/docs/man3/SDL_GetVideoSurface.3 index 9ef14830a..0ce8f46ce 100644 --- a/docs/man3/SDL_GetVideoSurface.3 +++ b/docs/man3/SDL_GetVideoSurface.3 @@ -1,6 +1,6 @@ .TH "SDL_GetVideoSurface" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_GetVideoSurface\- returns a pointer to the current display surface +SDL_GetVideoSurface \- returns a pointer to the current display surface .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_Init.3 b/docs/man3/SDL_Init.3 index 899adda1b..43dd689fd 100644 --- a/docs/man3/SDL_Init.3 +++ b/docs/man3/SDL_Init.3 @@ -1,6 +1,6 @@ .TH "SDL_Init" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" -SDL_Init\- Initializes SDL +SDL_Init \- Initializes SDL .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_InitSubSystem.3 b/docs/man3/SDL_InitSubSystem.3 index 73d3a46d6..3b0e8562a 100644 --- a/docs/man3/SDL_InitSubSystem.3 +++ b/docs/man3/SDL_InitSubSystem.3 @@ -1,6 +1,6 @@ .TH "SDL_InitSubSystem" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" -SDL_InitSubSystem\- Initialize subsystems +SDL_InitSubSystem \- Initialize subsystems .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_JoyAxisEvent.3 b/docs/man3/SDL_JoyAxisEvent.3 index e2e783d7c..827a05584 100644 --- a/docs/man3/SDL_JoyAxisEvent.3 +++ b/docs/man3/SDL_JoyAxisEvent.3 @@ -1,6 +1,6 @@ .TH "SDL_JoyAxisEvent" "3" "Tue 11 Sep 2001, 22:59" "SDL" "SDL API Reference" .SH "NAME" -SDL_JoyAxisEvent\- Joystick axis motion event structure +SDL_JoyAxisEvent \- Joystick axis motion event structure .SH "STRUCTURE DEFINITION" .PP .nf diff --git a/docs/man3/SDL_JoyBallEvent.3 b/docs/man3/SDL_JoyBallEvent.3 index 00d3576e9..5c0f815b5 100644 --- a/docs/man3/SDL_JoyBallEvent.3 +++ b/docs/man3/SDL_JoyBallEvent.3 @@ -1,6 +1,6 @@ .TH "SDL_JoyBallEvent" "3" "Tue 11 Sep 2001, 22:59" "SDL" "SDL API Reference" .SH "NAME" -SDL_JoyBallEvent\- Joystick trackball motion event structure +SDL_JoyBallEvent \- Joystick trackball motion event structure .SH "STRUCTURE DEFINITION" .PP .nf diff --git a/docs/man3/SDL_JoyButtonEvent.3 b/docs/man3/SDL_JoyButtonEvent.3 index cc3bc381c..58a6677a6 100644 --- a/docs/man3/SDL_JoyButtonEvent.3 +++ b/docs/man3/SDL_JoyButtonEvent.3 @@ -1,6 +1,6 @@ .TH "SDL_JoyButtonEvent" "3" "Tue 11 Sep 2001, 22:59" "SDL" "SDL API Reference" .SH "NAME" -SDL_JoyButtonEvent\- Joystick button event structure +SDL_JoyButtonEvent \- Joystick button event structure .SH "STRUCTURE DEFINITION" .PP .nf diff --git a/docs/man3/SDL_JoyHatEvent.3 b/docs/man3/SDL_JoyHatEvent.3 index e5b6d9846..00f73832a 100644 --- a/docs/man3/SDL_JoyHatEvent.3 +++ b/docs/man3/SDL_JoyHatEvent.3 @@ -1,6 +1,6 @@ .TH "SDL_JoyHatEvent" "3" "Tue 11 Sep 2001, 22:59" "SDL" "SDL API Reference" .SH "NAME" -SDL_JoyHatEvent\- Joystick hat position change event structure +SDL_JoyHatEvent \- Joystick hat position change event structure .SH "STRUCTURE DEFINITION" .PP .nf diff --git a/docs/man3/SDL_JoystickClose.3 b/docs/man3/SDL_JoystickClose.3 index 80e30ef81..91d68f24e 100644 --- a/docs/man3/SDL_JoystickClose.3 +++ b/docs/man3/SDL_JoystickClose.3 @@ -1,6 +1,6 @@ .TH "SDL_JoystickClose" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" -SDL_JoystickClose\- Closes a previously opened joystick +SDL_JoystickClose \- Closes a previously opened joystick .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_JoystickEventState.3 b/docs/man3/SDL_JoystickEventState.3 index c456f498b..f6ede2e95 100644 --- a/docs/man3/SDL_JoystickEventState.3 +++ b/docs/man3/SDL_JoystickEventState.3 @@ -1,6 +1,6 @@ .TH "SDL_JoystickEventState" "3" "Tue 11 Sep 2001, 22:59" "SDL" "SDL API Reference" .SH "NAME" -SDL_JoystickEventState\- Enable/disable joystick event polling +SDL_JoystickEventState \- Enable/disable joystick event polling .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_JoystickGetAxis.3 b/docs/man3/SDL_JoystickGetAxis.3 index 7075448fe..0e4b2d935 100644 --- a/docs/man3/SDL_JoystickGetAxis.3 +++ b/docs/man3/SDL_JoystickGetAxis.3 @@ -1,6 +1,6 @@ .TH "SDL_JoystickGetAxis" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" -SDL_JoystickGetAxis\- Get the current state of an axis +SDL_JoystickGetAxis \- Get the current state of an axis .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_JoystickGetBall.3 b/docs/man3/SDL_JoystickGetBall.3 index 378759be6..8fadb97a4 100644 --- a/docs/man3/SDL_JoystickGetBall.3 +++ b/docs/man3/SDL_JoystickGetBall.3 @@ -1,6 +1,6 @@ .TH "SDL_JoystickGetBall" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" -SDL_JoystickGetBall\- Get relative trackball motion +SDL_JoystickGetBall \- Get relative trackball motion .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_JoystickGetButton.3 b/docs/man3/SDL_JoystickGetButton.3 index e6c778a31..531e469af 100644 --- a/docs/man3/SDL_JoystickGetButton.3 +++ b/docs/man3/SDL_JoystickGetButton.3 @@ -1,6 +1,6 @@ .TH "SDL_JoystickGetButton" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" -SDL_JoystickGetButton\- Get the current state of a given button on a given joystick +SDL_JoystickGetButton \- Get the current state of a given button on a given joystick .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_JoystickGetHat.3 b/docs/man3/SDL_JoystickGetHat.3 index d13304170..91b836351 100644 --- a/docs/man3/SDL_JoystickGetHat.3 +++ b/docs/man3/SDL_JoystickGetHat.3 @@ -1,6 +1,6 @@ .TH "SDL_JoystickGetHat" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" -SDL_JoystickGetHat\- Get the current state of a joystick hat +SDL_JoystickGetHat \- Get the current state of a joystick hat .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_JoystickIndex.3 b/docs/man3/SDL_JoystickIndex.3 index cb1180265..b57c298b3 100644 --- a/docs/man3/SDL_JoystickIndex.3 +++ b/docs/man3/SDL_JoystickIndex.3 @@ -1,6 +1,6 @@ .TH "SDL_JoystickIndex" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" -SDL_JoystickIndex\- Get the index of an SDL_Joystick\&. +SDL_JoystickIndex \- Get the index of an SDL_Joystick\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_JoystickName.3 b/docs/man3/SDL_JoystickName.3 index 5128f72a1..d824f22fe 100644 --- a/docs/man3/SDL_JoystickName.3 +++ b/docs/man3/SDL_JoystickName.3 @@ -1,6 +1,6 @@ .TH "SDL_JoystickName" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" -SDL_JoystickName\- Get joystick name\&. +SDL_JoystickName \- Get joystick name\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_JoystickNumAxes.3 b/docs/man3/SDL_JoystickNumAxes.3 index 90d07a554..d4a23875f 100644 --- a/docs/man3/SDL_JoystickNumAxes.3 +++ b/docs/man3/SDL_JoystickNumAxes.3 @@ -1,6 +1,6 @@ .TH "SDL_JoystickNumAxes" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" -SDL_JoystickNumAxes\- Get the number of joystick axes +SDL_JoystickNumAxes \- Get the number of joystick axes .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_JoystickNumBalls.3 b/docs/man3/SDL_JoystickNumBalls.3 index 9b2d15d5b..c7f5c658d 100644 --- a/docs/man3/SDL_JoystickNumBalls.3 +++ b/docs/man3/SDL_JoystickNumBalls.3 @@ -1,6 +1,6 @@ .TH "SDL_JoystickNumBalls" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" -SDL_JoystickNumBalls\- Get the number of joystick trackballs +SDL_JoystickNumBalls \- Get the number of joystick trackballs .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_JoystickNumButtons.3 b/docs/man3/SDL_JoystickNumButtons.3 index 1a2a0bf2b..e0c9ad9e7 100644 --- a/docs/man3/SDL_JoystickNumButtons.3 +++ b/docs/man3/SDL_JoystickNumButtons.3 @@ -1,6 +1,6 @@ .TH "SDL_JoystickNumButtons" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" -SDL_JoystickNumButtons\- Get the number of joysitck buttons +SDL_JoystickNumButtons \- Get the number of joysitck buttons .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_JoystickNumHats.3 b/docs/man3/SDL_JoystickNumHats.3 index 124372bf7..31f23ccdc 100644 --- a/docs/man3/SDL_JoystickNumHats.3 +++ b/docs/man3/SDL_JoystickNumHats.3 @@ -1,6 +1,6 @@ .TH "SDL_JoystickNumHats" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" -SDL_JoystickNumHats\- Get the number of joystick hats +SDL_JoystickNumHats \- Get the number of joystick hats .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_JoystickOpen.3 b/docs/man3/SDL_JoystickOpen.3 index 3a58fee61..935b972d7 100644 --- a/docs/man3/SDL_JoystickOpen.3 +++ b/docs/man3/SDL_JoystickOpen.3 @@ -1,6 +1,6 @@ .TH "SDL_JoystickOpen" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" -SDL_JoystickOpen\- Opens a joystick for use\&. +SDL_JoystickOpen \- Opens a joystick for use\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_JoystickOpened.3 b/docs/man3/SDL_JoystickOpened.3 index 435775b1c..df0f4c596 100644 --- a/docs/man3/SDL_JoystickOpened.3 +++ b/docs/man3/SDL_JoystickOpened.3 @@ -1,6 +1,6 @@ .TH "SDL_JoystickOpened" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" -SDL_JoystickOpened\- Determine if a joystick has been opened +SDL_JoystickOpened \- Determine if a joystick has been opened .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_JoystickUpdate.3 b/docs/man3/SDL_JoystickUpdate.3 index 35b7cda5a..f1e490465 100644 --- a/docs/man3/SDL_JoystickUpdate.3 +++ b/docs/man3/SDL_JoystickUpdate.3 @@ -1,6 +1,6 @@ .TH "SDL_JoystickUpdate" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" -SDL_JoystickUpdate\- Updates the state of all joysticks +SDL_JoystickUpdate \- Updates the state of all joysticks .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_KeyboardEvent.3 b/docs/man3/SDL_KeyboardEvent.3 index 652dc3cd6..4f179d435 100644 --- a/docs/man3/SDL_KeyboardEvent.3 +++ b/docs/man3/SDL_KeyboardEvent.3 @@ -1,6 +1,6 @@ .TH "SDL_KeyboardEvent" "3" "Tue 11 Sep 2001, 22:59" "SDL" "SDL API Reference" .SH "NAME" -SDL_KeyboardEvent\- Keyboard event structure +SDL_KeyboardEvent \- Keyboard event structure .SH "STRUCTURE DEFINITION" .PP .nf diff --git a/docs/man3/SDL_KillThread.3 b/docs/man3/SDL_KillThread.3 index 4ece02676..a117b33d3 100644 --- a/docs/man3/SDL_KillThread.3 +++ b/docs/man3/SDL_KillThread.3 @@ -1,6 +1,6 @@ .TH "SDL_KillThread" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" -SDL_KillThread\- Gracelessly terminates the thread\&. +SDL_KillThread \- Gracelessly terminates the thread\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_ListModes.3 b/docs/man3/SDL_ListModes.3 index c0b9c28d4..2ab0f1da9 100644 --- a/docs/man3/SDL_ListModes.3 +++ b/docs/man3/SDL_ListModes.3 @@ -1,6 +1,6 @@ .TH "SDL_ListModes" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_ListModes\- Returns a pointer to an array of available screen dimensions for the given format and video flags +SDL_ListModes \- Returns a pointer to an array of available screen dimensions for the given format and video flags .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_LoadBMP.3 b/docs/man3/SDL_LoadBMP.3 index 0dc725386..03d20dd23 100644 --- a/docs/man3/SDL_LoadBMP.3 +++ b/docs/man3/SDL_LoadBMP.3 @@ -1,6 +1,6 @@ .TH "SDL_LoadBMP" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_LoadBMP\- Load a Windows BMP file into an SDL_Surface\&. +SDL_LoadBMP \- Load a Windows BMP file into an SDL_Surface\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_LoadWAV.3 b/docs/man3/SDL_LoadWAV.3 index b1d758a37..c8fe974d1 100644 --- a/docs/man3/SDL_LoadWAV.3 +++ b/docs/man3/SDL_LoadWAV.3 @@ -1,6 +1,6 @@ .TH "SDL_LoadWAV" "3" "Tue 11 Sep 2001, 22:58" "SDL" "SDL API Reference" .SH "NAME" -SDL_LoadWAV\- Load a WAVE file +SDL_LoadWAV \- Load a WAVE file .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_LockAudio.3 b/docs/man3/SDL_LockAudio.3 index 08aa8f3cb..525bb45d4 100644 --- a/docs/man3/SDL_LockAudio.3 +++ b/docs/man3/SDL_LockAudio.3 @@ -1,6 +1,6 @@ .TH "SDL_LockAudio" "3" "Tue 11 Sep 2001, 22:58" "SDL" "SDL API Reference" .SH "NAME" -SDL_LockAudio\- Lock out the callback function +SDL_LockAudio \- Lock out the callback function .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_LockSurface.3 b/docs/man3/SDL_LockSurface.3 index cb6b95419..242970bd5 100644 --- a/docs/man3/SDL_LockSurface.3 +++ b/docs/man3/SDL_LockSurface.3 @@ -1,6 +1,6 @@ .TH "SDL_LockSurface" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_LockSurface\- Lock a surface for directly access\&. +SDL_LockSurface \- Lock a surface for directly access\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_LockYUVOverlay.3 b/docs/man3/SDL_LockYUVOverlay.3 index 4e2c9e8c7..c1fa0e9e4 100644 --- a/docs/man3/SDL_LockYUVOverlay.3 +++ b/docs/man3/SDL_LockYUVOverlay.3 @@ -1,6 +1,6 @@ .TH "SDL_LockYUVOverlay" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_LockYUVOverlay\- Lock an overlay +SDL_LockYUVOverlay \- Lock an overlay .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_MapRGB.3 b/docs/man3/SDL_MapRGB.3 index 2d5337589..b506502c1 100644 --- a/docs/man3/SDL_MapRGB.3 +++ b/docs/man3/SDL_MapRGB.3 @@ -1,6 +1,6 @@ .TH "SDL_MapRGB" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_MapRGB\- Map a RGB color value to a pixel format\&. +SDL_MapRGB \- Map a RGB color value to a pixel format\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_MapRGBA.3 b/docs/man3/SDL_MapRGBA.3 index d5620fb2f..390ea5a9e 100644 --- a/docs/man3/SDL_MapRGBA.3 +++ b/docs/man3/SDL_MapRGBA.3 @@ -1,6 +1,6 @@ .TH "SDL_MapRGBA" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_MapRGBA\- Map a RGBA color value to a pixel format\&. +SDL_MapRGBA \- Map a RGBA color value to a pixel format\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_MixAudio.3 b/docs/man3/SDL_MixAudio.3 index 633854fe9..30d81bb0b 100644 --- a/docs/man3/SDL_MixAudio.3 +++ b/docs/man3/SDL_MixAudio.3 @@ -1,6 +1,6 @@ .TH "SDL_MixAudio" "3" "Tue 11 Sep 2001, 22:58" "SDL" "SDL API Reference" .SH "NAME" -SDL_MixAudio\- Mix audio data +SDL_MixAudio \- Mix audio data .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_MouseButtonEvent.3 b/docs/man3/SDL_MouseButtonEvent.3 index a57f15eb8..f043ee37c 100644 --- a/docs/man3/SDL_MouseButtonEvent.3 +++ b/docs/man3/SDL_MouseButtonEvent.3 @@ -1,6 +1,6 @@ .TH "SDL_MouseButtonEvent" "3" "Tue 11 Sep 2001, 22:59" "SDL" "SDL API Reference" .SH "NAME" -SDL_MouseButtonEvent\- Mouse button event structure +SDL_MouseButtonEvent \- Mouse button event structure .SH "STRUCTURE DEFINITION" .PP .nf diff --git a/docs/man3/SDL_MouseMotionEvent.3 b/docs/man3/SDL_MouseMotionEvent.3 index 06f424d47..444b4d078 100644 --- a/docs/man3/SDL_MouseMotionEvent.3 +++ b/docs/man3/SDL_MouseMotionEvent.3 @@ -1,6 +1,6 @@ .TH "SDL_MouseMotionEvent" "3" "Tue 11 Sep 2001, 22:59" "SDL" "SDL API Reference" .SH "NAME" -SDL_MouseMotionEvent\- Mouse motion event structure +SDL_MouseMotionEvent \- Mouse motion event structure .SH "STRUCTURE DEFINITION" .PP .nf diff --git a/docs/man3/SDL_NumJoysticks.3 b/docs/man3/SDL_NumJoysticks.3 index 3d90b4ad7..cb2bcb08b 100644 --- a/docs/man3/SDL_NumJoysticks.3 +++ b/docs/man3/SDL_NumJoysticks.3 @@ -1,6 +1,6 @@ .TH "SDL_NumJoysticks" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" -SDL_NumJoysticks\- Count available joysticks\&. +SDL_NumJoysticks \- Count available joysticks\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_OpenAudio.3 b/docs/man3/SDL_OpenAudio.3 index c78baa01a..a5d3ca7c7 100644 --- a/docs/man3/SDL_OpenAudio.3 +++ b/docs/man3/SDL_OpenAudio.3 @@ -1,6 +1,6 @@ .TH "SDL_OpenAudio" "3" "Tue 11 Sep 2001, 22:58" "SDL" "SDL API Reference" .SH "NAME" -SDL_OpenAudio\- Opens the audio device with the desired parameters\&. +SDL_OpenAudio \- Opens the audio device with the desired parameters\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_Overlay.3 b/docs/man3/SDL_Overlay.3 index f555e5274..e07e9e23f 100644 --- a/docs/man3/SDL_Overlay.3 +++ b/docs/man3/SDL_Overlay.3 @@ -1,6 +1,6 @@ .TH "SDL_Overlay" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_Overlay\- YUV video overlay +SDL_Overlay \- YUV video overlay .SH "STRUCTURE DEFINITION" .PP .nf diff --git a/docs/man3/SDL_Palette.3 b/docs/man3/SDL_Palette.3 index 234aef9f8..2af0ef87c 100644 --- a/docs/man3/SDL_Palette.3 +++ b/docs/man3/SDL_Palette.3 @@ -1,6 +1,6 @@ .TH "SDL_Palette" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_Palette\- Color palette for 8-bit pixel formats +SDL_Palette \- Color palette for 8-bit pixel formats .SH "STRUCTURE DEFINITION" .PP .nf diff --git a/docs/man3/SDL_PauseAudio.3 b/docs/man3/SDL_PauseAudio.3 index 799a3a5c8..d12e47a1c 100644 --- a/docs/man3/SDL_PauseAudio.3 +++ b/docs/man3/SDL_PauseAudio.3 @@ -1,6 +1,6 @@ .TH "SDL_PauseAudio" "3" "Tue 11 Sep 2001, 22:58" "SDL" "SDL API Reference" .SH "NAME" -SDL_PauseAudio\- Pauses and unpauses the audio callback processing +SDL_PauseAudio \- Pauses and unpauses the audio callback processing .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_PeepEvents.3 b/docs/man3/SDL_PeepEvents.3 index 984a22faa..5e015c76c 100644 --- a/docs/man3/SDL_PeepEvents.3 +++ b/docs/man3/SDL_PeepEvents.3 @@ -1,6 +1,6 @@ .TH "SDL_PeepEvents" "3" "Tue 11 Sep 2001, 22:59" "SDL" "SDL API Reference" .SH "NAME" -SDL_PeepEvents\- Checks the event queue for messages and optionally returns them\&. +SDL_PeepEvents \- Checks the event queue for messages and optionally returns them\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_PixelFormat.3 b/docs/man3/SDL_PixelFormat.3 index 0f4550e3c..ac8e7a2a5 100644 --- a/docs/man3/SDL_PixelFormat.3 +++ b/docs/man3/SDL_PixelFormat.3 @@ -1,6 +1,6 @@ .TH "SDL_PixelFormat" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_PixelFormat\- Stores surface format information +SDL_PixelFormat \- Stores surface format information .SH "STRUCTURE DEFINITION" .PP .nf diff --git a/docs/man3/SDL_PollEvent.3 b/docs/man3/SDL_PollEvent.3 index 689f64c60..0a15c82ab 100644 --- a/docs/man3/SDL_PollEvent.3 +++ b/docs/man3/SDL_PollEvent.3 @@ -1,6 +1,6 @@ .TH "SDL_PollEvent" "3" "Tue 11 Sep 2001, 22:59" "SDL" "SDL API Reference" .SH "NAME" -SDL_PollEvent\- Polls for currently pending events\&. +SDL_PollEvent \- Polls for currently pending events\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_PumpEvents.3 b/docs/man3/SDL_PumpEvents.3 index ccd9496ba..99768c06e 100644 --- a/docs/man3/SDL_PumpEvents.3 +++ b/docs/man3/SDL_PumpEvents.3 @@ -1,6 +1,6 @@ .TH "SDL_PumpEvents" "3" "Tue 11 Sep 2001, 22:59" "SDL" "SDL API Reference" .SH "NAME" -SDL_PumpEvents\- Pumps the event loop, gathering events from the input devices\&. +SDL_PumpEvents \- Pumps the event loop, gathering events from the input devices\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_PushEvent.3 b/docs/man3/SDL_PushEvent.3 index 9faf8a249..c2c07df73 100644 --- a/docs/man3/SDL_PushEvent.3 +++ b/docs/man3/SDL_PushEvent.3 @@ -1,6 +1,6 @@ .TH "SDL_PushEvent" "3" "Tue 11 Sep 2001, 22:59" "SDL" "SDL API Reference" .SH "NAME" -SDL_PushEvent\- Pushes an event onto the event queue +SDL_PushEvent \- Pushes an event onto the event queue .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_Quit.3 b/docs/man3/SDL_Quit.3 index 2ebad0e15..fac5029e9 100644 --- a/docs/man3/SDL_Quit.3 +++ b/docs/man3/SDL_Quit.3 @@ -1,6 +1,6 @@ .TH "SDL_Quit" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" -SDL_Quit\- Shut down SDL +SDL_Quit \- Shut down SDL .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_QuitEvent.3 b/docs/man3/SDL_QuitEvent.3 index 7060601eb..4a66d012e 100644 --- a/docs/man3/SDL_QuitEvent.3 +++ b/docs/man3/SDL_QuitEvent.3 @@ -1,6 +1,6 @@ .TH "SDL_QuitEvent" "3" "Tue 11 Sep 2001, 22:59" "SDL" "SDL API Reference" .SH "NAME" -SDL_QuitEvent\- Quit requested event +SDL_QuitEvent \- Quit requested event .SH "STRUCTURE DEFINITION" .PP .nf diff --git a/docs/man3/SDL_QuitSubSystem.3 b/docs/man3/SDL_QuitSubSystem.3 index 1d26fb05f..fc9226ea0 100644 --- a/docs/man3/SDL_QuitSubSystem.3 +++ b/docs/man3/SDL_QuitSubSystem.3 @@ -1,6 +1,6 @@ .TH "SDL_QuitSubSystem" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" -SDL_QuitSubSystem\- Shut down a subsystem +SDL_QuitSubSystem \- Shut down a subsystem .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_RWFromFile.3 b/docs/man3/SDL_RWFromFile.3 index c810a13ee..cbcd29ccb 100644 --- a/docs/man3/SDL_RWFromFile.3 +++ b/docs/man3/SDL_RWFromFile.3 @@ -1,6 +1,6 @@ .TH "SDL_FunctionName" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" -SDL_FunctionName\- Short description of function +SDL_FunctionName \- Short description of function .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_Rect.3 b/docs/man3/SDL_Rect.3 index a976cd15a..49ecf39fe 100644 --- a/docs/man3/SDL_Rect.3 +++ b/docs/man3/SDL_Rect.3 @@ -1,6 +1,6 @@ .TH "SDL_Rect" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_Rect\- Defines a rectangular area +SDL_Rect \- Defines a rectangular area .SH "STRUCTURE DEFINITION" .PP .nf diff --git a/docs/man3/SDL_RemoveTimer.3 b/docs/man3/SDL_RemoveTimer.3 index a67f62beb..8eb8daeb8 100644 --- a/docs/man3/SDL_RemoveTimer.3 +++ b/docs/man3/SDL_RemoveTimer.3 @@ -1,6 +1,6 @@ .TH "SDL_RemoveTimer" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_RemoveTimer\- Remove a timer which was added with \fISDL_AddTimer\fR\&. +SDL_RemoveTimer \- Remove a timer which was added with \fISDL_AddTimer\fR\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_ResizeEvent.3 b/docs/man3/SDL_ResizeEvent.3 index f6dcc0c23..7b02dcd05 100644 --- a/docs/man3/SDL_ResizeEvent.3 +++ b/docs/man3/SDL_ResizeEvent.3 @@ -1,6 +1,6 @@ .TH "SDL_ResizeEvent" "3" "Tue 11 Sep 2001, 22:59" "SDL" "SDL API Reference" .SH "NAME" -SDL_ResizeEvent\- Window resize event structure +SDL_ResizeEvent \- Window resize event structure .SH "STRUCTURE DEFINITION" .PP .nf diff --git a/docs/man3/SDL_SaveBMP.3 b/docs/man3/SDL_SaveBMP.3 index 1a113c338..0b6066ffa 100644 --- a/docs/man3/SDL_SaveBMP.3 +++ b/docs/man3/SDL_SaveBMP.3 @@ -1,6 +1,6 @@ .TH "SDL_SaveBMP" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_SaveBMP\- Save an SDL_Surface as a Windows BMP file\&. +SDL_SaveBMP \- Save an SDL_Surface as a Windows BMP file\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_SemPost.3 b/docs/man3/SDL_SemPost.3 index ced0d79ad..008809c7c 100644 --- a/docs/man3/SDL_SemPost.3 +++ b/docs/man3/SDL_SemPost.3 @@ -1,6 +1,6 @@ .TH "SDL_SemPost" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" -SDL_SemPost\- Unlock a semaphore\&. +SDL_SemPost \- Unlock a semaphore\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_SemTryWait.3 b/docs/man3/SDL_SemTryWait.3 index ad515b219..a09b7d411 100644 --- a/docs/man3/SDL_SemTryWait.3 +++ b/docs/man3/SDL_SemTryWait.3 @@ -1,6 +1,6 @@ .TH "SDL_SemTryWait" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" -SDL_SemTryWait\- Attempt to lock a semaphore but don\&'t suspend the thread\&. +SDL_SemTryWait \- Attempt to lock a semaphore but don\&'t suspend the thread\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_SemValue.3 b/docs/man3/SDL_SemValue.3 index 8c98875c8..d2f31a574 100644 --- a/docs/man3/SDL_SemValue.3 +++ b/docs/man3/SDL_SemValue.3 @@ -1,6 +1,6 @@ .TH "SDL_SemValue" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" -SDL_SemValue\- Return the current value of a semaphore\&. +SDL_SemValue \- Return the current value of a semaphore\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_SemWait.3 b/docs/man3/SDL_SemWait.3 index a0cb71baa..29939d4c2 100644 --- a/docs/man3/SDL_SemWait.3 +++ b/docs/man3/SDL_SemWait.3 @@ -1,6 +1,6 @@ .TH "SDL_SemWait" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" -SDL_SemWait\- Lock a semaphore and suspend the thread if the semaphore value is zero\&. +SDL_SemWait \- Lock a semaphore and suspend the thread if the semaphore value is zero\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_SemWaitTimeout.3 b/docs/man3/SDL_SemWaitTimeout.3 index 215ad16f0..14eee9514 100644 --- a/docs/man3/SDL_SemWaitTimeout.3 +++ b/docs/man3/SDL_SemWaitTimeout.3 @@ -1,6 +1,6 @@ .TH "SDL_SemWaitTimeout" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" -SDL_SemWaitTimeout\- Lock a semaphore, but only wait up to a specified maximum time\&. +SDL_SemWaitTimeout \- Lock a semaphore, but only wait up to a specified maximum time\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_SetAlpha.3 b/docs/man3/SDL_SetAlpha.3 index 503fe8e8d..f127eca22 100644 --- a/docs/man3/SDL_SetAlpha.3 +++ b/docs/man3/SDL_SetAlpha.3 @@ -1,6 +1,6 @@ .TH "SDL_SetAlpha" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_SetAlpha\- Adjust the alpha properties of a surface +SDL_SetAlpha \- Adjust the alpha properties of a surface .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_SetClipRect.3 b/docs/man3/SDL_SetClipRect.3 index 71b6ceea2..82f16d1c6 100644 --- a/docs/man3/SDL_SetClipRect.3 +++ b/docs/man3/SDL_SetClipRect.3 @@ -1,6 +1,6 @@ .TH "SDL_SetClipRect" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_SetClipRect\- Sets the clipping rectangle for a surface\&. +SDL_SetClipRect \- Sets the clipping rectangle for a surface\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_SetColorKey.3 b/docs/man3/SDL_SetColorKey.3 index 837f790a6..a653be1fa 100644 --- a/docs/man3/SDL_SetColorKey.3 +++ b/docs/man3/SDL_SetColorKey.3 @@ -1,6 +1,6 @@ .TH "SDL_SetColorKey" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_SetColorKey\- Sets the color key (transparent pixel) in a blittable surface and RLE acceleration\&. +SDL_SetColorKey \- Sets the color key (transparent pixel) in a blittable surface and RLE acceleration\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_SetColors.3 b/docs/man3/SDL_SetColors.3 index 0134f917c..0d892a965 100644 --- a/docs/man3/SDL_SetColors.3 +++ b/docs/man3/SDL_SetColors.3 @@ -1,6 +1,6 @@ .TH "SDL_SetColors" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_SetColors\- Sets a portion of the colormap for the given 8-bit surface\&. +SDL_SetColors \- Sets a portion of the colormap for the given 8-bit surface\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_SetCursor.3 b/docs/man3/SDL_SetCursor.3 index 462c2cac3..6ea1737ca 100644 --- a/docs/man3/SDL_SetCursor.3 +++ b/docs/man3/SDL_SetCursor.3 @@ -1,6 +1,6 @@ .TH "SDL_SetCursor" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_SetCursor\- Set the currently active mouse cursor\&. +SDL_SetCursor \- Set the currently active mouse cursor\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_SetEventFilter.3 b/docs/man3/SDL_SetEventFilter.3 index 15eee4a29..12c0d9c57 100644 --- a/docs/man3/SDL_SetEventFilter.3 +++ b/docs/man3/SDL_SetEventFilter.3 @@ -1,6 +1,6 @@ .TH "SDL_SetEventFilter" "3" "Tue 11 Sep 2001, 22:59" "SDL" "SDL API Reference" .SH "NAME" -SDL_SetEventFilter\- Sets up a filter to process all events before they are posted to the event queue\&. +SDL_SetEventFilter \- Sets up a filter to process all events before they are posted to the event queue\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_SetGamma.3 b/docs/man3/SDL_SetGamma.3 index 7237c5ea0..d88dd82d1 100644 --- a/docs/man3/SDL_SetGamma.3 +++ b/docs/man3/SDL_SetGamma.3 @@ -1,6 +1,6 @@ .TH "SDL_SetGamma" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_SetGamma\- Sets the color gamma function for the display +SDL_SetGamma \- Sets the color gamma function for the display .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_SetGammaRamp.3 b/docs/man3/SDL_SetGammaRamp.3 index c6978ac4a..64a314ab9 100644 --- a/docs/man3/SDL_SetGammaRamp.3 +++ b/docs/man3/SDL_SetGammaRamp.3 @@ -1,6 +1,6 @@ .TH "SDL_SetGammaRamp" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_SetGammaRamp\- Sets the color gamma lookup tables for the display +SDL_SetGammaRamp \- Sets the color gamma lookup tables for the display .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_SetModState.3 b/docs/man3/SDL_SetModState.3 index 1777b1fda..29776d26b 100644 --- a/docs/man3/SDL_SetModState.3 +++ b/docs/man3/SDL_SetModState.3 @@ -1,6 +1,6 @@ .TH "SDL_SetModState" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" -SDL_SetModState\- Set the current key modifier state +SDL_SetModState \- Set the current key modifier state .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_SetPalette.3 b/docs/man3/SDL_SetPalette.3 index 90387f0e6..c800d24e6 100644 --- a/docs/man3/SDL_SetPalette.3 +++ b/docs/man3/SDL_SetPalette.3 @@ -1,6 +1,6 @@ .TH "SDL_SetPalette" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_SetPalette\- Sets the colors in the palette of an 8-bit surface\&. +SDL_SetPalette \- Sets the colors in the palette of an 8-bit surface\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_SetTimer.3 b/docs/man3/SDL_SetTimer.3 index dac4650dd..e85ee93d2 100644 --- a/docs/man3/SDL_SetTimer.3 +++ b/docs/man3/SDL_SetTimer.3 @@ -1,6 +1,6 @@ .TH "SDL_SetTimer" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_SetTimer\- Set a callback to run after the specified number of milliseconds has elapsed\&. +SDL_SetTimer \- Set a callback to run after the specified number of milliseconds has elapsed\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_SetVideoMode.3 b/docs/man3/SDL_SetVideoMode.3 index f83d1012a..52b980d32 100644 --- a/docs/man3/SDL_SetVideoMode.3 +++ b/docs/man3/SDL_SetVideoMode.3 @@ -1,6 +1,6 @@ .TH "SDL_SetVideoMode" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_SetVideoMode\- Set up a video mode with the specified width, height and bits-per-pixel\&. +SDL_SetVideoMode \- Set up a video mode with the specified width, height and bits-per-pixel\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_ShowCursor.3 b/docs/man3/SDL_ShowCursor.3 index 0b42ed57f..2bacc8b64 100644 --- a/docs/man3/SDL_ShowCursor.3 +++ b/docs/man3/SDL_ShowCursor.3 @@ -1,6 +1,6 @@ .TH "SDL_ShowCursor" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_ShowCursor\- Toggle whether or not the cursor is shown on the screen\&. +SDL_ShowCursor \- Toggle whether or not the cursor is shown on the screen\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_Surface.3 b/docs/man3/SDL_Surface.3 index a627d0644..88ccbea95 100644 --- a/docs/man3/SDL_Surface.3 +++ b/docs/man3/SDL_Surface.3 @@ -1,6 +1,6 @@ .TH "SDL_Surface" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_Surface\- Graphical Surface Structure +SDL_Surface \- Graphical Surface Structure .SH "STRUCTURE DEFINITION" .PP .nf diff --git a/docs/man3/SDL_SysWMEvent.3 b/docs/man3/SDL_SysWMEvent.3 index 84b629ba9..ba782c2fc 100644 --- a/docs/man3/SDL_SysWMEvent.3 +++ b/docs/man3/SDL_SysWMEvent.3 @@ -1,6 +1,6 @@ .TH "SDL_SysWMEvent" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" -SDL_SysWMEvent\- Platform-dependent window manager event\&. +SDL_SysWMEvent \- Platform-dependent window manager event\&. .SH "DESCRIPTION" .PP The system window manager event contains a pointer to system-specific information about unknown window manager events\&. If you enable this event using \fI\fBSDL_EventState()\fP\fR, it will be generated whenever unhandled events are received from the window manager\&. This can be used, for example, to implement cut-and-paste in your application\&. diff --git a/docs/man3/SDL_ThreadID.3 b/docs/man3/SDL_ThreadID.3 index 1658c7125..e90ed2551 100644 --- a/docs/man3/SDL_ThreadID.3 +++ b/docs/man3/SDL_ThreadID.3 @@ -1,6 +1,6 @@ .TH "SDL_ThreadID" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" -SDL_ThreadID\- Get the 32-bit thread identifier for the current thread\&. +SDL_ThreadID \- Get the 32-bit thread identifier for the current thread\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_UnlockAudio.3 b/docs/man3/SDL_UnlockAudio.3 index 4d385bf2e..019bf2e95 100644 --- a/docs/man3/SDL_UnlockAudio.3 +++ b/docs/man3/SDL_UnlockAudio.3 @@ -1,6 +1,6 @@ .TH "SDL_UnlockAudio" "3" "Tue 11 Sep 2001, 22:58" "SDL" "SDL API Reference" .SH "NAME" -SDL_UnlockAudio\- Unlock the callback function +SDL_UnlockAudio \- Unlock the callback function .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_UnlockSurface.3 b/docs/man3/SDL_UnlockSurface.3 index 3661467dd..163b773bb 100644 --- a/docs/man3/SDL_UnlockSurface.3 +++ b/docs/man3/SDL_UnlockSurface.3 @@ -1,6 +1,6 @@ .TH "SDL_UnlockSurface" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_UnlockSurface\- Unlocks a previously locked surface\&. +SDL_UnlockSurface \- Unlocks a previously locked surface\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_UnlockYUVOverlay.3 b/docs/man3/SDL_UnlockYUVOverlay.3 index 5cda838f8..343fd0ab4 100644 --- a/docs/man3/SDL_UnlockYUVOverlay.3 +++ b/docs/man3/SDL_UnlockYUVOverlay.3 @@ -1,6 +1,6 @@ .TH "SDL_UnlockYUVOverlay" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_UnlockYUVOverlay\- Unlock an overlay +SDL_UnlockYUVOverlay \- Unlock an overlay .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_UpdateRect.3 b/docs/man3/SDL_UpdateRect.3 index fbb334038..564b3a7c2 100644 --- a/docs/man3/SDL_UpdateRect.3 +++ b/docs/man3/SDL_UpdateRect.3 @@ -1,6 +1,6 @@ .TH "SDL_UpdateRect" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_UpdateRect\- Makes sure the given area is updated on the given screen\&. +SDL_UpdateRect \- Makes sure the given area is updated on the given screen\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_UpdateRects.3 b/docs/man3/SDL_UpdateRects.3 index 0db2dee89..e9de7e103 100644 --- a/docs/man3/SDL_UpdateRects.3 +++ b/docs/man3/SDL_UpdateRects.3 @@ -1,6 +1,6 @@ .TH "SDL_UpdateRects" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_UpdateRects\- Makes sure the given list of rectangles is updated on the given screen\&. +SDL_UpdateRects \- Makes sure the given list of rectangles is updated on the given screen\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_UserEvent.3 b/docs/man3/SDL_UserEvent.3 index ed25ea0db..c11d07f87 100644 --- a/docs/man3/SDL_UserEvent.3 +++ b/docs/man3/SDL_UserEvent.3 @@ -1,6 +1,6 @@ .TH "SDL_UserEvent" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" -SDL_UserEvent\- A user-defined event type +SDL_UserEvent \- A user-defined event type .SH "STRUCTURE DEFINITION" .PP .nf diff --git a/docs/man3/SDL_VideoDriverName.3 b/docs/man3/SDL_VideoDriverName.3 index 52b116574..e5510a76a 100644 --- a/docs/man3/SDL_VideoDriverName.3 +++ b/docs/man3/SDL_VideoDriverName.3 @@ -1,6 +1,6 @@ .TH "SDL_VideoDriverName" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_VideoDriverName\- Obtain the name of the video driver +SDL_VideoDriverName \- Obtain the name of the video driver .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_VideoInfo.3 b/docs/man3/SDL_VideoInfo.3 index ed11835e1..5031f9ca4 100644 --- a/docs/man3/SDL_VideoInfo.3 +++ b/docs/man3/SDL_VideoInfo.3 @@ -1,6 +1,6 @@ .TH "SDL_VideoInfo" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_VideoInfo\- Video Target information +SDL_VideoInfo \- Video Target information .SH "STRUCTURE DEFINITION" .PP .nf diff --git a/docs/man3/SDL_VideoModeOK.3 b/docs/man3/SDL_VideoModeOK.3 index 8245ae6e6..f88e48d8f 100644 --- a/docs/man3/SDL_VideoModeOK.3 +++ b/docs/man3/SDL_VideoModeOK.3 @@ -1,6 +1,6 @@ .TH "SDL_VideoModeOK" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_VideoModeOK\- Check to see if a particular video mode is supported\&. +SDL_VideoModeOK \- Check to see if a particular video mode is supported\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_WM_GetCaption.3 b/docs/man3/SDL_WM_GetCaption.3 index 4507cab6a..b8aa4dc68 100644 --- a/docs/man3/SDL_WM_GetCaption.3 +++ b/docs/man3/SDL_WM_GetCaption.3 @@ -1,6 +1,6 @@ .TH "SDL_WM_GetCaption" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_WM_GetCaption\- Gets the window title and icon name\&. +SDL_WM_GetCaption \- Gets the window title and icon name\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_WM_GrabInput.3 b/docs/man3/SDL_WM_GrabInput.3 index 3948af7ec..766866e88 100644 --- a/docs/man3/SDL_WM_GrabInput.3 +++ b/docs/man3/SDL_WM_GrabInput.3 @@ -1,6 +1,6 @@ .TH "SDL_WM_GrabInput" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_WM_GrabInput\- Grabs mouse and keyboard input\&. +SDL_WM_GrabInput \- Grabs mouse and keyboard input\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_WM_IconifyWindow.3 b/docs/man3/SDL_WM_IconifyWindow.3 index dea10eb12..b5edeeb60 100644 --- a/docs/man3/SDL_WM_IconifyWindow.3 +++ b/docs/man3/SDL_WM_IconifyWindow.3 @@ -1,6 +1,6 @@ .TH "SDL_WM_IconifyWindow" "3" "Tue 11 Sep 2001, 23:02" "SDL" "SDL API Reference" .SH "NAME" -SDL_WM_IconifyWindow\- Iconify/Minimise the window +SDL_WM_IconifyWindow \- Iconify/Minimise the window .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_WM_SetCaption.3 b/docs/man3/SDL_WM_SetCaption.3 index d21ef4f40..80308c4f2 100644 --- a/docs/man3/SDL_WM_SetCaption.3 +++ b/docs/man3/SDL_WM_SetCaption.3 @@ -1,6 +1,6 @@ .TH "SDL_WM_SetCaption" "3" "Tue 11 Sep 2001, 23:02" "SDL" "SDL API Reference" .SH "NAME" -SDL_WM_SetCaption\- Sets the window tile and icon name\&. +SDL_WM_SetCaption \- Sets the window tile and icon name\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_WM_SetIcon.3 b/docs/man3/SDL_WM_SetIcon.3 index fccebe503..e6a05895e 100644 --- a/docs/man3/SDL_WM_SetIcon.3 +++ b/docs/man3/SDL_WM_SetIcon.3 @@ -1,6 +1,6 @@ .TH "SDL_WM_SetIcon" "3" "Tue 11 Sep 2001, 23:02" "SDL" "SDL API Reference" .SH "NAME" -SDL_WM_SetIcon\- Sets the icon for the display window\&. +SDL_WM_SetIcon \- Sets the icon for the display window\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_WM_ToggleFullScreen.3 b/docs/man3/SDL_WM_ToggleFullScreen.3 index a1def8e3f..ba850de15 100644 --- a/docs/man3/SDL_WM_ToggleFullScreen.3 +++ b/docs/man3/SDL_WM_ToggleFullScreen.3 @@ -1,6 +1,6 @@ .TH "SDL_WM_ToggleFullScreen" "3" "Tue 11 Sep 2001, 23:02" "SDL" "SDL API Reference" .SH "NAME" -SDL_WM_ToggleFullScreen\- Toggles fullscreen mode +SDL_WM_ToggleFullScreen \- Toggles fullscreen mode .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_WaitEvent.3 b/docs/man3/SDL_WaitEvent.3 index 181cb94a4..fcdd49176 100644 --- a/docs/man3/SDL_WaitEvent.3 +++ b/docs/man3/SDL_WaitEvent.3 @@ -1,6 +1,6 @@ .TH "SDL_WaitEvent" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" -SDL_WaitEvent\- Waits indefinitely for the next available event\&. +SDL_WaitEvent \- Waits indefinitely for the next available event\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_WaitThread.3 b/docs/man3/SDL_WaitThread.3 index 501ba614a..0bfe95cae 100644 --- a/docs/man3/SDL_WaitThread.3 +++ b/docs/man3/SDL_WaitThread.3 @@ -1,6 +1,6 @@ .TH "SDL_WaitThread" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_WaitThread\- Wait for a thread to finish\&. +SDL_WaitThread \- Wait for a thread to finish\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_WarpMouse.3 b/docs/man3/SDL_WarpMouse.3 index 2306f1b54..340810e8b 100644 --- a/docs/man3/SDL_WarpMouse.3 +++ b/docs/man3/SDL_WarpMouse.3 @@ -1,6 +1,6 @@ .TH "SDL_WarpMouse" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_WarpMouse\- Set the position of the mouse cursor\&. +SDL_WarpMouse \- Set the position of the mouse cursor\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_WasInit.3 b/docs/man3/SDL_WasInit.3 index 80e56296b..4cbb5469a 100644 --- a/docs/man3/SDL_WasInit.3 +++ b/docs/man3/SDL_WasInit.3 @@ -1,6 +1,6 @@ .TH "SDL_WasInit" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" -SDL_WasInit\- Check which subsystems are initialized +SDL_WasInit \- Check which subsystems are initialized .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_keysym.3 b/docs/man3/SDL_keysym.3 index c5fdf4ac5..b8a7ba2d1 100644 --- a/docs/man3/SDL_keysym.3 +++ b/docs/man3/SDL_keysym.3 @@ -1,6 +1,6 @@ .TH "SDL_keysym" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" -SDL_keysym\- Keysym structure +SDL_keysym \- Keysym structure .SH "STRUCTURE DEFINITION" .PP .nf diff --git a/docs/man3/SDL_mutexP.3 b/docs/man3/SDL_mutexP.3 index 612bfde76..042d2b062 100644 --- a/docs/man3/SDL_mutexP.3 +++ b/docs/man3/SDL_mutexP.3 @@ -1,6 +1,6 @@ .TH "SDL_mutexP" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_mutexP\- Lock a mutex +SDL_mutexP \- Lock a mutex .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" diff --git a/docs/man3/SDL_mutexV.3 b/docs/man3/SDL_mutexV.3 index 90c7545d5..1953ed972 100644 --- a/docs/man3/SDL_mutexV.3 +++ b/docs/man3/SDL_mutexV.3 @@ -1,6 +1,6 @@ .TH "SDL_mutexV" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_mutexV\- Unlock a mutex +SDL_mutexV \- Unlock a mutex .SH "SYNOPSIS" .PP \fB#include "SDL\&.h"