summaryrefslogtreecommitdiff
path: root/src/digraph.c
Commit message (Collapse)AuthorAgeFilesLines
* patch 8.1.2378: using old C style commentsv8.1.2378Bram Moolenaar2019-12-011-398/+398
| | | | | Problem: Using old C style comments. Solution: Use // comments where appropriate.
* patch 8.1.1923: some source files are not in a normal encodingv8.1.1923Bram Moolenaar2019-08-241-395/+395
| | | | | | Problem: Some source files are not in a normal encoding. Solution: Convert hangulin.c from euc-kr to utf-8 and digraph.c from latin1 to utf-8. (Daniel Hahler, closes #4731)
* patch 8.1.1891: functions used in one file are globalv8.1.1891Bram Moolenaar2019-08-201-1/+1
| | | | | Problem: Functions used in one file are global. Solution: Add "static". (Yegappan Lakshmanan, closes #4840)
* patch 8.1.1588: in :let-heredoc line continuation is recognizedv8.1.1588Bram Moolenaar2019-06-251-1/+1
| | | | | Problem: In :let-heredoc line continuation is recognized. Solution: Do not consume line continuation. (Ozaki Kiichi, closes #4580)
* 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.0805: too many #ifdefsv8.1.0805Bram Moolenaar2019-01-241-164/+9
| | | | | Problem: Too many #ifdefs. Solution: Graduate FEAT_MBYTE, part 1.
* patch 8.1.0743: giving error messages is not flexiblev8.1.0743Bram Moolenaar2019-01-131-7/+7
| | | | | | | | Problem: Giving error messages is not flexible. Solution: Add semsg(). Change argument from "char_u *" to "char *", also for msg() and get rid of most MSG macros. (Ozaki Kiichi, closes #3302) Also make emsg() accept a "char *" argument. Get rid of an enormous number of type casts.
* patch 8.1.0586: :digraph output is not easy to readv8.1.0586Bram Moolenaar2018-12-141-69/+162
| | | | | | Problem: :digraph output is not easy to read. Solution: Add highlighting for :digraphs. (Marcin Szamotulski, closes #3572) Also add section headers for :digraphs!.
* patch 8.1.0443: unnecessary static function prototypesv8.1.0443Bram Moolenaar2018-09-301-1/+0
| | | | | Problem: Unnecessary static function prototypes. Solution: Remove unnecessary prototypes.
* patch 8.1.0059: displayed digraph for "ga" wrong with 'encoding' "cp1251"v8.1.0059Bram Moolenaar2018-06-161-2/+25
| | | | | Problem: Displayed digraph for "ga" wrong with 'encoding' "cp1251". Solution: Convert from 'encoding' to "utf-8" if needed. (closes #3015)
* patch 8.0.1553: cannot see what digraph is used to insert a characterv8.0.1553Bram Moolenaar2018-02-271-0/+35
| | | | | Problem: Cannot see what digraph is used to insert a character. Solution: Show the digraph with the "ga" command. (Christian Brabandt)
* patch 8.0.1435: memory leak in test_arabicv8.0.1435Bram Moolenaar2018-01-281-2/+13
| | | | | Problem: Memory leak in test_arabic. Solution: Free the from and to parts. (Christian Brabandt, closes #2569)
* patch 8.0.1236: Mac features are confusingv8.0.1236Bram Moolenaar2017-10-281-2/+2
| | | | | | Problem: Mac features are confusing. Solution: Make feature names more consistent, add "osxdarwin". Rename feature flags, cleanup Mac code. (Kazunobu Kuriyama, closes #2178)
* patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefsv8.0.1118Bram Moolenaar2017-09-161-4/+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.0749: some unicode digraphs are hard to rememberv8.0.0749Bram Moolenaar2017-07-221-0/+7
| | | | | Problem: Some unicode digraphs are hard to remember. Solution: Add alternatives with a backtick. (Chris Harding, closes #1861)
* patch 8.0.0062v8.0.0062Bram Moolenaar2016-11-041-0/+1
| | | | | Problem: No digraph for HORIZONTAL ELLIPSIS. Solution: Use ",.". (Hans Ginzel, closes #1226)
* 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.2135v7.4.2135Bram Moolenaar2016-07-311-1/+0
| | | | | Problem: Various tiny issues. Solution: Update comments, white space, etc.
* patch 7.4.1552v7.4.1552Bram Moolenaar2016-03-121-2/+2
| | | | | Problem: ":colorscheme" does not use 'packpath'. Solution: Also use in "start" and "opt" directories in 'packpath'.
* patch 7.4.1399v7.4.1399Bram Moolenaar2016-02-231-83/+15
| | | | | Problem: The MS-DOS code does not build. Solution: Remove the old MS-DOS code.
* patch 7.4.1205v7.4.1205Bram Moolenaar2016-01-301-21/+11
| | | | | | Problem: Using old style function declarations. Solution: Change to new style function declarations. (script by Hirohito Higashi)
* patch 7.4.1196v7.4.1196Bram Moolenaar2016-01-291-3/+3
| | | | | Problem: Still using __ARGS. Solution: Remove __ARGS in several files. (script by Hirohito Higashi)
* patch 7.4.1008v7.4.1008Bram Moolenaar2015-12-311-3/+3
| | | | | Problem: The OS/2 code pollutes the source while nobody uses it these days. Solution: Drop the support for OS/2.
* updated for version 7.4.335v7.4.335Bram Moolenaar2014-06-181-0/+2
| | | | | Problem: No digraph for the new rouble sign. Solution: Add the digraphs =R and =P.
* updated for version 7.3.400v7.3.400Bram Moolenaar2012-01-101-8/+8
| | | | | Problem: Compiler warnings for shadowed variables. Solution: Remove or rename the variables.
* updated for version 7.2.414v7.2.414Bram Moolenaar2010-05-071-39/+2
| | | | | | | Problem: CTRK-K <space> <space> does not produce 0xa0 as expected. (Tony Mechelynck) Solution: Remove the Unicode range 0xe000 - 0xefff from digraphs, these are not valid characters.
* updated for version 7.2-167fixv7.2.167Bram Moolenaar2009-05-131-1/+1
|
* updated for version 7.2-168Bram Moolenaar2009-05-131-10/+17
|
* updated for version 7.2av7.2aBram Moolenaar2008-06-241-2/+5
|
* updated for version 7.1-193v7.1.193Bram Moolenaar2008-01-031-0/+55
|
* updated for version 7.1-104v7.1.104Bram Moolenaar2007-09-131-3/+3
|
* updated for version 7.1-022v7.1.022Bram Moolenaar2007-07-071-2/+3
|
* updated for version 7.0g01Bram Moolenaar2006-05-021-0/+1
|
* updated for version 7.0e05v7.0e05Bram Moolenaar2006-04-211-1/+4
|
* updated for version 7.0146Bram Moolenaar2005-09-131-0/+2
|
* updated for version 7.0129v7.0129Bram Moolenaar2005-08-121-2/+2
|
* updated for version 7.0078Bram Moolenaar2005-06-011-7/+1
|
* updated for version 7.0073v7.0073Bram Moolenaar2005-05-191-3/+3
|
* updated for version 7.0025v7.0025Bram Moolenaar2004-12-271-4/+0
|
* updated for version 7.0017v7.0017Bram Moolenaar2004-10-071-0/+1
|
* updated for version 7.0001v7.0001Bram Moolenaar2004-06-131-0/+2513