summaryrefslogtreecommitdiffstats
path: root/src/if_cscope.c
AgeCommit message (Collapse)Author
2017-01-15patch 8.0.0192: cannot build with tiny featuresv8.0.0192Bram Moolenaar
Problem: Build fails with tiny features. Solution: Change #ifdef for hash_clear(). Avoid warning for unused argument.
2016-11-12patch 8.0.0081v8.0.0081Bram Moolenaar
Problem: Inconsistent function names. Solution: Rename do_cscope to ex_cscope. Clean up comments.
2016-11-10patch 8.0.0074v8.0.0074Bram Moolenaar
Problem: Cannot make Vim fail on an internal error. Solution: Add IEMSG() and IEMSG2(). (Domenique Pelle) Avoid reporting an internal error without mentioning where.
2016-11-06patch 8.0.0068v8.0.0068Bram Moolenaar
Problem: Checking did_throw after executing autocommands is wrong. (Daniel Hahler) Solution: Call aborting() instead, and only when autocommands were executed.
2016-10-12patch 8.0.0029v8.0.0029Bram Moolenaar
Problem: Code for MS-Windows is complicated because of the exceptions for old systems. Solution: Drop support for MS-Windows older than Windows XP. (Ken Takata)
2016-08-29patch 7.4.2293v7.4.2293Bram Moolenaar
Problem: Modelines in source code are inconsistant. Solution: Use the same line in most files. Add 'noet'. (Naruhiko Nishino)
2016-07-05patch 7.4.1990v7.4.1990Bram Moolenaar
Problem: Cscope items are not sorted. Solution: Put the new "a" command first. (Ken Takata)
2016-07-01patch 7.4.1975v7.4.1975Bram Moolenaar
Problem: On MS-Windows large files (> 2Gbyte) cause problems. Solution: Use "off_T" instead of "off_t". Use "stat_T" instead of "struct stat". Use 64 bit system functions if available. (Ken Takata)
2016-06-21patch 7.4.1952v7.4.1952Bram Moolenaar
Problem: Cscope interface does not support finding assignments. Solution: Add the "a" command. (ppettina, closes #882)
2016-02-23patch 7.4.1410v7.4.1410Bram Moolenaar
Problem: Leaking memory in cscope interface. Solution: Free memory when no tab is found. (Christian Brabandt)
2016-02-23patch 7.4.1406v7.4.1406Bram Moolenaar
Problem: Leaking memory in cs_print_tags_priv(). Solution: Free tbuf. (idea by Forrest Fleming)
2016-02-16patch 7.4.1334v7.4.1334Bram Moolenaar
Problem: Many compiler warnings with MingW. Solution: Add type casts. (Yasuhiro Matsumoto)
2016-01-30patch 7.4.1208v7.4.1208Bram Moolenaar
Problem: Using old style function declarations. Solution: Change to new style function declarations. (script by Hirohito Higashi)
2016-01-29patch 7.4.1198v7.4.1198Bram Moolenaar
Problem: Still using __ARGS. Solution: Remove __ARGS in several files. (script by Hirohito Higashi) Also remove use of HAVE_STDARG_H.
2015-08-11patch 7.4.822v7.4.822Bram Moolenaar
Problem: More problems reported by coverity. Solution: Avoid the warnings. (Christian Brabandt)
2015-03-31updated for version 7.4.684v7.4.684Bram Moolenaar
Problem: When starting several Vim instances in diff mode, the temp files used may not be unique. (Issue 353) Solution: Add an argument to vim_tempname() to keep the file.
2015-02-10updated for version 7.4.624v7.4.624Bram Moolenaar
Problem: May leak memory or crash when vim_realloc() returns NULL. Solution: Handle a NULL value properly. (Mike Williams)
2014-12-13updated for version 7.4.544v7.4.544Bram Moolenaar
Problem: Warnings for unused arguments when compiling with a combination of features. Solution: Add "UNUSED".
2013-06-30updated for version 7.3.1276v7.3.1276Bram Moolenaar
Problem: When using a cscope connection resizing the window may send SIGWINCH to cscope and it quits. Solution: Call setpgid(0, 0) in the child process. (Narendran Gopalakrishnan)
2013-06-12updated for version 7.3.1180v7.3.1180Bram Moolenaar
Problem: When current directory changes, path from cscope may no longer be valid. (AS Budden) Solution: Always store the absolute path. (Christian Brabandt)
2013-05-29updated for version 7.3.1038v7.3.1038Bram Moolenaar
Problem: Crash when using Cscope. Solution: Avoid negative argument to vim_strncpy(). (Narendran Gopalakrishnan)
2013-05-06updated for version 7.3.925v7.3.925Bram Moolenaar
Problem: Typos in source files. Solution: Fix the typos. (Ken Takata)
2011-06-12updated for version 7.3.211v7.3.211Bram Moolenaar
Problem: Compiler warning. Solution: Add type cast.
2011-06-12updated for version 7.3.210v7.3.210Bram Moolenaar
Problem: Can't always find the file when using cscope. Solution: Add the 'cscoperelative' option. (Raghavendra D Prabhu)
2011-05-05updated for version 7.3.172v7.3.172Bram Moolenaar
Problem: MS-Windows: rename() might delete the file if the name differs but it's actually the same file. Solution: Use the file handle to check if it's the same file. (Yukihiro Nakadaira)
2011-03-03updated for version 7.3.136v7.3.136Bram Moolenaar
Problem: Duplicate include of assert.h. Solution: Remove it.
2010-12-30updated for version 7.3.090v7.3.090Bram Moolenaar
Problem: Wrong help text for Cscope. Solution: Adjust the help text for "t". (Dominique Pelle)
2010-12-17updated for version 7.3.087v7.3.087Bram Moolenaar
Problem: EINTR is not always defined. Solution: Include errno.h in vim.h.
2010-12-17updated for version 7.3.085v7.3.085Bram Moolenaar
Problem: Inconsistency with preproc symbols. void * computation. Solution: Include vimio.h from vim.h. Add type cast.
2010-09-21updated for version 7.3.008v7.3.008Bram Moolenaar
Problem: 'cursorbind' is kept in places where 'scrollbind' is reset. Solution: Reset 'cursorbind'.
2010-07-25Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)Bram Moolenaar
2010-06-26Various small fixes from Dominique Pelle.Bram Moolenaar
2010-05-14updated for version 7.2.433v7.2.433Bram Moolenaar
Problem: Can't use cscope with QuickFixCmdPre and QuickFixCmdPost. Solution: Add cscope support for these autocmd events. (Bryan Venteicher)
2010-02-24updated for version 7.2.371v7.2.371Bram Moolenaar
Problem: Build problems on Tandem NonStop. Solution: A few changes to #ifdefs (Joachim Schmitz)
2010-01-19updated for version 7.2.333v7.2.333Bram Moolenaar
Problem: Warnings from static code analysis. Solution: Small changes to various lines. (Dominique Pelle)
2009-07-10updated for version 7.2-228v7.2.228Bram Moolenaar
2009-05-16updated for version 7.2-177v7.2.177Bram Moolenaar
2009-05-16updated for version 7.2-175v7.2.175Bram Moolenaar
2009-04-22updated for version 7.2-156v7.2.156Bram Moolenaar
2009-03-18updated for version 7.2-145v7.2.145Bram Moolenaar
2009-03-18updated for version 7.2-143v7.2.143Bram Moolenaar
2009-01-28updated for version 7.2-091v7.2.091Bram Moolenaar
2008-08-25updated for version 7.2-004v7.2.004Bram Moolenaar
2008-06-24updated for version 7.2aBram Moolenaar
2008-04-01updated for version 7.1-291v7.1.291Bram Moolenaar
2008-04-01updated for version 7.1-288v7.1.288Bram Moolenaar
2008-03-16updated for version 7.1-283v7.1.283Bram Moolenaar
2008-03-16updated for version 7.1-281v7.1.281Bram Moolenaar
2008-03-15updated for version 7.1-279v7.1.279Bram Moolenaar
2007-09-14updated for version 7.1-108v7.1.108Bram Moolenaar