summaryrefslogtreecommitdiff
path: root/src/regexp.c
Commit message (Expand)AuthorAgeFilesLines
* patch 8.2.0260: several lines of code are duplicatedv8.2.0260Bram Moolenaar2020-02-151-0/+22
* patch 8.2.0250: test_clear_search_pat() is unusedv8.2.0250Bram Moolenaar2020-02-121-9/+0
* patch 8.2.0212: missing search/substitute pattern hardly testedv8.2.0212Bram Moolenaar2020-02-051-0/+9
* patch 8.2.0035: saving and restoring called_emsg is clumsyv8.2.0035Bram Moolenaar2019-12-231-5/+4
* patch 8.1.2394: using old C style commentsv8.1.2394Bram Moolenaar2019-12-051-252/+252
* patch 8.1.2282: crash when passing many arguments through a partialv8.1.2282Bram Moolenaar2019-11-101-4/+10
* patch 8.1.2280: crash when passing partial to substitute()v8.1.2280Bram Moolenaar2019-11-091-11/+12
* patch 8.1.2005: the regexp.c file is too bigv8.1.2005Bram Moolenaar2019-09-071-5446/+30
* patch 8.1.1979: code for handling file names is spread outv8.1.1979Bram Moolenaar2019-09-041-5/+2
* patch 8.1.1891: functions used in one file are globalv8.1.1891Bram Moolenaar2019-08-201-2/+2
* patch 8.1.1827: allocating more memory than needed for extended structsv8.1.1827Bram Moolenaar2019-08-081-1/+1
* patch 8.1.1800: function call functions have too many argumentsv8.1.1800Bram Moolenaar2019-08-031-7/+7
* patch 8.1.1720: crash with very long %[] patternv8.1.1720Bram Moolenaar2019-07-201-0/+6
* patch 8.1.1414: alloc() returning "char_u *" causes a lot of type castsv8.1.1414Bram Moolenaar2019-05-281-2/+2
* patch 8.1.1386: unessesary type casts for lalloc()v8.1.1386Bram Moolenaar2019-05-241-3/+3
* patch 8.1.1384: using "int" for alloc() often results in compiler warningsv8.1.1384Bram Moolenaar2019-05-241-1/+1
* patch 8.1.1319: computing function length name in many placesv8.1.1319Bram Moolenaar2019-05-111-2/+2
* patch 8.1.1202: always get regexp debugging logs when building with -DDEBUGv8.1.1202Bram Moolenaar2019-04-251-5/+5
* patch 8.1.1032: warnings from clang static analyzerv8.1.1032Bram Moolenaar2019-03-211-1/+1
* patch 8.1.1025: checking NULL pointer after additionv8.1.1025Bram Moolenaar2019-03-201-2/+3
* patch 8.1.0989: various small code uglinessv8.1.0989Bram Moolenaar2019-03-021-1/+1
* patch 8.1.0985: crash with large number in regexpv8.1.0985Bram Moolenaar2019-02-281-2/+2
* patch 8.1.0973: pattern with syntax error gives threee error messagesv8.1.0973Bram Moolenaar2019-02-221-1/+6
* patch 8.1.0937: invalid memory access in search patternv8.1.0937Bram Moolenaar2019-02-171-1/+1
* patch 8.1.0935: old regexp engine may use invalid bufferv8.1.0935Bram Moolenaar2019-02-161-0/+2
* patch 8.1.0934: invalid memory access in search patternv8.1.0934Bram Moolenaar2019-02-161-1/+1
* patch 8.1.0903: struct uses more bytes than neededv8.1.0903Bram Moolenaar2019-02-121-4/+4
* patch 8.1.0862: no verbose version of character classesv8.1.0862Bram Moolenaar2019-01-311-0/+32
* patch 8.1.0809: too many #ifdefsv8.1.0809Bram Moolenaar2019-01-241-181/+26
* patch 8.1.0785: depending on the configuration some functions are unusedv8.1.0785Bram Moolenaar2019-01-201-10/+3
* patch 8.1.0779: argument for message functions is inconsistentv8.1.0779Bram Moolenaar2019-01-191-2/+2
* patch 8.1.0748: using sprintf() instead of semsg()v8.1.0748Bram Moolenaar2019-01-141-17/+14
* patch 8.1.0743: giving error messages is not flexiblev8.1.0743Bram Moolenaar2019-01-131-24/+24
* patch 8.1.0677: look-behind match may use the wrong line numberv8.1.0677Bram Moolenaar2019-01-011-1/+1
* patch 8.1.0661: clipboard regexp might be used recursivelyv8.1.0661Bram Moolenaar2018-12-291-0/+9
* patch 8.1.0615: get_tv function names are not consistentv8.1.0615Bram Moolenaar2018-12-211-1/+1
* patch 8.1.0443: unnecessary static function prototypesv8.1.0443Bram Moolenaar2018-09-301-18/+0
* patch 8.1.0194: possibly use of NULL pointerv8.1.0194Bram Moolenaar2018-07-181-2/+10
* patch 8.1.0192: executing regexp recursively fails with a crashv8.1.0192Bram Moolenaar2018-07-171-191/+214
* patch 8.1.0102: cannot build without syntax highlightingv8.1.0102Bram Moolenaar2018-06-231-0/+4
* patch 8.1.0098: segfault when pattern with \z() is very slowv8.1.0098Bram Moolenaar2018-06-231-5/+10
* patch 8.0.1517: invalid memory acces with pattern using look-behind matchv8.0.1517Bram Moolenaar2018-02-131-1/+6
* patch 8.0.1496: clearing a pointer takes two linesv8.0.1496Bram Moolenaar2018-02-101-12/+8
* patch 8.0.1254: undefined left shift in gethexchrs()v8.0.1254Bram Moolenaar2017-11-021-15/+15
* patch 8.0.1215: newer gcc warns for implicit fallthroughv8.0.1215Bram Moolenaar2017-10-241-6/+6
* patch 8.0.0647: syntax highlighting can make cause a freezev8.0.0647Bram Moolenaar2017-06-181-10/+6
* patch 8.0.0646: the hlsearch test fails on fast systemsv8.0.0646Bram Moolenaar2017-06-171-9/+32
* patch 8.0.0645: no error for illegal back reference in NFA enginev8.0.0645Bram Moolenaar2017-06-171-18/+30
* patch 8.0.0643: when a pattern search is slow Vim becomes unusablev8.0.0643Bram Moolenaar2017-06-171-8/+16
* patch 8.0.0624: warning for unused variable in tiny buildv8.0.0624Bram Moolenaar2017-06-051-0/+2