summaryrefslogtreecommitdiff
path: root/src/gui_motif.c
Commit message (Collapse)AuthorAgeFilesLines
* patch 8.2.1715: Motif GUI: commented out code missed {}v8.2.1715Bram Moolenaar2020-09-201-2/+2
| | | | | Problem: Motif GUI: commented out code missed {}. Solution: Add {} and reenable the code. (similar to #6989)
* patch 8.2.1713: Motif GUI: crash when setting menu colorsv8.2.1713Bram Moolenaar2020-09-201-0/+4
| | | | | | Problem: Motif GUI: crash when setting menu colors. (Andrzej Bylicki) Solution: Add {} to make "n" incremented correctly. (closes #6989, closes #5948)
* patch 8.2.1228: scrollbars not flush against the window edges when maximisedv8.2.1228Bram Moolenaar2020-07-171-0/+16
| | | | | Problem: Scrollbars not flush against the window edges when maximised. Solution: Add padding. (Ken Takata, closes #5602, closes #6466)
* patch 8.2.0765: In the GUI can't use all the modifiers.v8.2.0765Bram Moolenaar2020-05-161-0/+3
| | | | | | Problem: In the GUI can't use all the modifiers. (Andri Möll) Solution: Do not apply Alt/Meta early, do it later like with the terminal. Avoid the Motif test from crashing.
* patch 8.2.0559: clearing a struct is verbosev8.2.0559Bram Moolenaar2020-04-121-1/+1
| | | | | Problem: Clearing a struct is verbose. Solution: Define and use CLEAR_FIELD() and CLEAR_POINTER().
* patch 8.2.0523: loops are repeatedv8.2.0523Bram Moolenaar2020-04-061-4/+4
| | | | | Problem: Loops are repeated. Solution: Use FOR_ALL_ macros. (Yegappan Lakshmanan, closes #5882)
* patch 8.1.2383: using old C style commentsv8.1.2383Bram Moolenaar2019-12-021-209/+200
| | | | | Problem: Using old C style comments. Solution: Use // comments where appropriate.
* patch 8.1.1414: alloc() returning "char_u *" causes a lot of type castsv8.1.1414Bram Moolenaar2019-05-281-1/+1
| | | | | | Problem: Alloc() returning "char_u *" causes a lot of type casts. Solution: Have it return "void *". (Mike Williams) Define ALLOC_ONE() to check the simple allocations.
* patch 8.1.1384: using "int" for alloc() often results in compiler warningsv8.1.1384Bram Moolenaar2019-05-241-1/+1
| | | | | | Problem: Using "int" for alloc() often results in compiler warnings. Solution: Use "size_t" and remove type casts. Remove alloc_check(), Vim only works with 32 bit ints anyway.
* patch 8.1.1086: too many curly bracesv8.1.1086Bram Moolenaar2019-03-301-6/+0
| | | | | | Problem: Too many curly braces. Solution: Remove curly braces where they are not needed. (Hirohito Higashi, closes #3982)
* patch 8.1.0766: various problems when using Vim on VMSv8.1.0766Bram Moolenaar2019-01-171-2/+5
| | | | | Problem: Various problems when using Vim on VMS. Solution: Various fixes. Define long_long_T. (Zoltan Arpadffy)
* patch 8.1.0763: nobody is using the Sun Workshop supportv8.1.0763Bram Moolenaar2019-01-171-2/+1
| | | | | Problem: Nobody is using the Sun Workshop support. Solution: Remove the Workshop support.
* patch 8.1.0577: tabpage right-click menu never shows "Close tab"v8.1.0577Bram Moolenaar2018-12-111-13/+10
| | | | | | Problem: Tabpage right-click menu never shows "Close tab". Solution: Always create the "Close tab" item but ignore the event if there is only one tab.
* patch 8.1.0528: various typos in commentsv8.1.0528Bram Moolenaar2018-11-161-7/+7
| | | | | Problem: Various typos in comments. Solution: Fix the typos.
* patch 8.1.0443: unnecessary static function prototypesv8.1.0443Bram Moolenaar2018-09-301-33/+0
| | | | | Problem: Unnecessary static function prototypes. Solution: Remove unnecessary prototypes.
* patch 8.0.1312: balloon_show() only works in terminal when compiled with GUIv8.0.1312Bram Moolenaar2017-11-181-6/+6
| | | | | | Problem: balloon_show() only works in terminal when compiled with the GUI. Solution: Add FEAT_BEVAL_GUI and refactor to move common code out of the GUI specific file.
* patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefsv8.0.1118Bram Moolenaar2017-09-161-2/+0
| | | | | | Problem: FEAT_WINDOWS adds a lot of #ifdefs while it is nearly always enabled and only adds 7% to the binary size of the tiny build. Solution: Graduate FEAT_WINDOWS.
* patch 8.0.0367: types in include files may be inconsistentv8.0.0367Bram Moolenaar2017-02-251-2/+2
| | | | | | Problem: If configure defines _LARGE_FILES some include files are included before it is defined. Solution: Include vim.h first. (Sam Thursfield, closes #1508)
* patch 7.4.2293v7.4.2293Bram Moolenaar2016-08-291-1/+1
| | | | | Problem: Modelines in source code are inconsistant. Solution: Use the same line in most files. Add 'noet'. (Naruhiko Nishino)
* patch 7.4.1212v7.4.1212Bram Moolenaar2016-01-301-1/+1
| | | | | Problem: Can't build with Motif. Solution: Fix function declaration.(Dominique Pelle)
* patch 7.4.1207v7.4.1207Bram Moolenaar2016-01-301-221/+169
| | | | | | Problem: Using old style function declarations. Solution: Change to new style function declarations. (script by Hirohito Higashi)
* patch 7.4.1204v7.4.1204Bram Moolenaar2016-01-301-1/+1
| | | | | Problem: Latin1 characters cause encoding conversion. Solution: Remove the characters.
* patch 7.4.1197v7.4.1197Bram Moolenaar2016-01-291-32/+32
| | | | | Problem: Still using __ARGS. Solution: Remove __ARGS in several files. (script by Hirohito Higashi)
* patch 7.4.731v7.4.731Bram Moolenaar2015-06-091-8/+11
| | | | | Problem: The tab menu shows "Close tab" even when it doesn't work. Solution: Don't show "Close tab" for the last tab. (John Marriott)
* updated for version 7.3.1225v7.3.1225Bram Moolenaar2013-06-221-2/+2
| | | | | Problem: Compiler warnings when building with Motif. Solution: Change set_label() argument. (Kazunobu Kuriyama)
* updated for version 7.3.925v7.3.925Bram Moolenaar2013-05-061-2/+2
| | | | | Problem: Typos in source files. Solution: Fix the typos. (Ken Takata)
* updated for version 7.3.102v7.3.102Bram Moolenaar2011-01-171-1/+2
| | | | | | | | Problem: When using ":make", typing the next command and then getting the "reload" prompt the next command is (partly) eaten by the reload prompt. Solution: Accept ':' as a special character at the reload prompt to accept the default choice and execute the command.
* Remove unused code.Bram Moolenaar2010-08-081-18/+0
|
* Fix uninit memory read in undo code. Fix uint32_t in proto file.Bram Moolenaar2010-05-241-1/+1
| | | | A few minor changes.
* updated for version 7.2.419v7.2.419Bram Moolenaar2010-05-131-0/+1
| | | | | Problem: Memory leak in Motif when clicking on "Search Vim Help". Solution: Free string returned by XmTextGetString(). (Dominique Pelle)
* updated for version 7.2-184v7.2.184Bram Moolenaar2009-05-211-71/+50
|
* updated for version 7.1-317v7.1.317Bram Moolenaar2008-06-201-10/+10
|
* updated for version 7.1-237v7.1.237Bram Moolenaar2008-01-221-1/+1
|
* updated for version 7.1bBram Moolenaar2007-05-101-2/+2
|
* updated for version 7.0gv7.0gBram Moolenaar2006-04-301-6/+6
|
* updated for version 7.0f02v7.0f02Bram Moolenaar2006-04-271-5/+42
|
* updated for version 7.0f01v7.0f01Bram Moolenaar2006-04-251-0/+2
|
* updated for version 7.0e05v7.0e05Bram Moolenaar2006-04-211-2/+3
|
* updated for version 7.0e04v7.0e04Bram Moolenaar2006-04-201-1/+3
|
* updated for version 7.0d02v7.0d02Bram Moolenaar2006-04-121-1/+15
|
* updated for version 7.0c13v7.0c13Bram Moolenaar2006-04-091-11/+98
|
* updated for version 7.0c10v7.0c10Bram Moolenaar2006-04-051-26/+424
|
* updated for version 7.0c01Bram Moolenaar2006-03-271-2/+2
|
* updated for version 7.0109Bram Moolenaar2005-07-181-4/+1
|
* updated for version 7.0061Bram Moolenaar2005-03-181-1/+1
|
* updated for version 7.0049Bram Moolenaar2005-02-071-22/+57
|
* updated for version 7.0046Bram Moolenaar2005-01-311-0/+3
|
* updated for version 7.0030Bram Moolenaar2005-01-041-1/+1
|
* updated for version 7.0029Bram Moolenaar2005-01-031-49/+11
|
* updated for version 7.0028Bram Moolenaar2005-01-021-70/+136
|