summaryrefslogtreecommitdiff
path: root/CODING_STYLE
Commit message (Collapse)AuthorAgeFilesLines
* Add emacs modeline to CODING_STYLEAdrian Johnson2023-01-151-0/+1
|
* [CODING_STYLE] Add vim modelineChris Wilson2008-09-061-1/+15
| | | | | Add my vim recipe that most closely matches the coding style. If you can improve it, please do so!
* Revamp the build system.Behdad Esfahbod2008-09-021-1/+8
| | | | | | | | | | | | | | | | | Quick summary of changes: - Move list of cairo source files out of src/Makefile.am and into src/Sources.mk, - Generate files src/Config.mk and src/Config.mk.win32 that choose the right set of source files and headers based on configured backends and features. This drastically simplifies building using other build systems. The src/Makefile.win32 file needs to be updated to reflect these changes. - Add README files to various directories, - Add toplevel HACKING file.
* [fix] Avoid int overflow when allocating large buffersVladimir Vukicevic2007-06-291-0/+25
| | | | | | | | This patch introduces three macros: _cairo_malloc_ab, _cairo_malloc_abc, _cairo_malloc_ab_plus_c and replaces various calls to malloc(a*b), malloc(a*b*c), and malloc(a*b+c) with them. The macros return NULL if int overflow would occur during the allocation. See CODING_STYLE for more information.
* CODING_STYLE: Fix misspellings.Carl Worth2006-06-061-2/+2
|
* CODING_STYLE: Add notes on avoiding trailing whitespace.Carl Worth2006-06-061-3/+17
|
* Globally rename "operator" to "op", to allow writing backends in C++Christian Biesinger2005-12-161-1/+1
| | | | reviewed by: cworth
* Revise the description of indentation and tabs to be clear (I hope).Carl Worth2005-08-231-5/+24
|
* Add a missing word.Carl Worth2005-07-071-2/+2
| | | | Note that the BadMatch bug has been resolved.
* Fix spelling errors.Carl Worth2005-06-031-3/+3
|
* Fix Freudian unwrapped line in paragraph describing why long lines should be ↵Carl Worth2005-06-031-2/+3
| | | | wrapped.
* Add CODING_STYLE document to standardize on some style issues.Carl Worth2005-06-031-0/+211
Standardize brace handling around all else clauses according to new CODING_STYLE guidelines.