ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/rxvtutil.h
Revision 1.65 - (view) (download) (annotate) - [select for diffs]
Thu May 13 19:40:20 2021 UTC (3 years ago) by sf-exg
Branch: MAIN
CVS Tags: HEAD, rxvt-unicode-rel-9_25, rxvt-unicode-rel-9_26, rxvt-unicode-rel-9_29, rxvt-unicode-rel-9_30
Changes since 1.64: +0 -9 lines
Diff to previous 1.64
Require C++11

Revision 1.64 - (view) (download) (annotate) - [select for diffs]
Tue Jun 25 03:35:01 2019 UTC (4 years, 10 months ago) by root
Branch: MAIN
Changes since 1.63: +3 -0 lines
Diff to previous 1.63
*** empty log message ***

Revision 1.63 - (view) (download) (annotate) - [select for diffs]
Sun Dec 14 04:52:10 2014 UTC (9 years, 5 months ago) by root
Branch: MAIN
CVS Tags: rxvt-unicode-rel-9_21, rxvt-unicode-rel-9_22
Changes since 1.62: +0 -2 lines
Diff to previous 1.62
ugh

Revision 1.62 - (view) (download) (annotate) - [select for diffs]
Wed Nov 12 12:12:02 2014 UTC (9 years, 6 months ago) by sf-exg
Branch: MAIN
Changes since 1.61: +0 -5 lines
Diff to previous 1.61
Make new/delete compatible with C++11 and change new to use rxvt_malloc.

Revision 1.61 - (view) (download) (annotate) - [select for diffs]
Mon Nov 10 12:14:48 2014 UTC (9 years, 6 months ago) by sf-exg
Branch: MAIN
Changes since 1.60: +1 -61 lines
Diff to previous 1.60
Replace auto_ptr with estl::scoped_array.

Revision 1.60 - (view) (download) (annotate) - [select for diffs]
Tue Oct 28 09:05:33 2014 UTC (9 years, 6 months ago) by sf-exg
Branch: MAIN
Changes since 1.59: +4 -13 lines
Diff to previous 1.59
It is not legal to specify new/delete as inline in C++11.

Revision 1.59 - (view) (download) (annotate) - [select for diffs]
Thu Oct 23 22:39:40 2014 UTC (9 years, 6 months ago) by sf-exg
Branch: MAIN
Changes since 1.58: +2 -2 lines
Diff to previous 1.58
Add missing exception specifications to new and delete.

Revision 1.58 - (view) (download) (annotate) - [select for diffs]
Thu Jun 28 15:19:15 2012 UTC (11 years, 10 months ago) by root
Branch: MAIN
CVS Tags: rxvt-unicode-rel-9_16, rxvt-unicode-rel-9_17, rxvt-unicode-rel-9_18, rxvt-unicode-rel-9_19, rxvt-unicode-rel-9_20
Changes since 1.57: +2 -0 lines
Diff to previous 1.57
add emman.h/c and use it for scrollback

Revision 1.57 - (view) (download) (annotate) - [select for diffs]
Fri May 25 18:49:59 2012 UTC (11 years, 11 months ago) by sf-exg
Branch: MAIN
Changes since 1.56: +2 -4 lines
Diff to previous 1.56
Implement auto_ptr '=' operator using reset/release.

Revision 1.56 - (view) (download) (annotate) - [select for diffs]
Fri May 25 07:49:20 2012 UTC (11 years, 11 months ago) by root
Branch: MAIN
Changes since 1.55: +1 -1 lines
Diff to previous 1.55
*** empty log message ***

Revision 1.55 - (view) (download) (annotate) - [select for diffs]
Fri May 25 07:48:03 2012 UTC (11 years, 11 months ago) by root
Branch: MAIN
Changes since 1.54: +28 -11 lines
Diff to previous 1.54
*** empty log message ***

Revision 1.54 - (view) (download) (annotate) - [select for diffs]
Fri May 25 07:38:05 2012 UTC (11 years, 11 months ago) by sf-exg
Branch: MAIN
Changes since 1.53: +2 -2 lines
Diff to previous 1.53
Replace auto_ptr 'operator= (T *a)' with 'reset', again.

Revision 1.53 - (view) (download) (annotate) - [select for diffs]
Thu May 24 15:03:47 2012 UTC (11 years, 11 months ago) by sf-exg
Branch: MAIN
Changes since 1.52: +2 -2 lines
Diff to previous 1.52
Revert last change to auto_ptr, the problem does not really exist.

Revision 1.52 - (view) (download) (annotate) - [select for diffs]
Thu May 24 13:08:08 2012 UTC (11 years, 11 months ago) by sf-exg
Branch: MAIN
Changes since 1.51: +2 -2 lines
Diff to previous 1.51
Replace auto_ptr 'operator= (T *a)' with 'reset'.

The former breaks auto_ptr because it always takes precedence over
'operator= (auto_ptr &a)' apparently.

Revision 1.51 - (view) (download) (annotate) - [select for diffs]
Fri Apr 13 11:46:37 2012 UTC (12 years, 1 month ago) by sf-exg
Branch: MAIN
Changes since 1.50: +3 -3 lines
Diff to previous 1.50
Fix style.

Revision 1.50 - (view) (download) (annotate) - [select for diffs]
Mon Jan 23 14:29:24 2012 UTC (12 years, 3 months ago) by sf-exg
Branch: MAIN
Changes since 1.49: +2 -2 lines
Diff to previous 1.49
Fix undefined behaviour in auto_str usage.

The operand of 'delete' cannot be a pointer to an array object. Fix the
bug by using malloc/free rather than new/delete.

Revision 1.49 - (view) (download) (annotate) - [select for diffs]
Sat Jan 21 13:47:19 2012 UTC (12 years, 3 months ago) by sf-exg
Branch: MAIN
Changes since 1.48: +1 -274 lines
Diff to previous 1.48
Fix build with latest libptytty.

Revision 1.48 - (view) (download) (annotate) - [select for diffs]
Thu Jan 19 17:10:51 2012 UTC (12 years, 3 months ago) by root
Branch: MAIN
CVS Tags: rxvt-unicode-rel-9_15
Changes since 1.47: +0 -2 lines
Diff to previous 1.47
*** empty log message ***

Revision 1.47 - (view) (download) (annotate) - [select for diffs]
Thu Jan 19 13:33:43 2012 UTC (12 years, 3 months ago) by sf-exg
Branch: MAIN
Changes since 1.46: +2 -2 lines
Diff to previous 1.46
Include the C standard headers rather than the corresponding C++ version.

Revision 1.46 - (view) (download) (annotate) - [select for diffs]
Thu Jun 2 13:07:28 2011 UTC (12 years, 11 months ago) by sf-exg
Branch: MAIN
CVS Tags: rel-9_12, rel-9_14
Changes since 1.45: +0 -1 lines
Diff to previous 1.45
Remove unneeded includes.

Revision 1.45 - (view) (download) (annotate) - [select for diffs]
Mon May 30 18:39:04 2011 UTC (12 years, 11 months ago) by sf-exg
Branch: MAIN
Changes since 1.44: +1 -51 lines
Diff to previous 1.44
Migrate to libecb.

Revision 1.44 - (view) (download) (annotate) - [select for diffs]
Mon Jan 3 18:52:41 2011 UTC (13 years, 4 months ago) by root
Branch: MAIN
CVS Tags: rel-9_11
Changes since 1.43: +1 -1 lines
Diff to previous 1.43
*** empty log message ***

Revision 1.43 - (view) (download) (annotate) - [select for diffs]
Mon Jan 3 18:42:58 2011 UTC (13 years, 4 months ago) by root
Branch: MAIN
Changes since 1.42: +7 -7 lines
Diff to previous 1.42
fix alignment, as pointed out by exg

Revision 1.42 - (view) (download) (annotate) - [select for diffs]
Mon Jan 3 03:05:47 2011 UTC (13 years, 4 months ago) by root
Branch: MAIN
Changes since 1.41: +12 -9 lines
Diff to previous 1.41
*** empty log message ***

Revision 1.41 - (view) (download) (annotate) - [select for diffs]
Sat Dec 18 18:17:39 2010 UTC (13 years, 4 months ago) by sf-exg
Branch: MAIN
Changes since 1.40: +2 -0 lines
Diff to previous 1.40
Add ARRAY_LENGTH macro with obvious meaning and use it.

Revision 1.40 - (view) (download) (annotate) - [select for diffs]
Mon Jul 26 09:57:53 2010 UTC (13 years, 9 months ago) by sf-exg
Branch: MAIN
CVS Tags: rel-9_09, rel-9_10
Changes since 1.39: +1 -1 lines
Diff to previous 1.39
Fix typos.

Revision 1.39 - (view) (download) (annotate) - [select for diffs]
Fri Sep 4 15:40:13 2009 UTC (14 years, 8 months ago) by root
Branch: MAIN
CVS Tags: before_dynamic_fontidx, dynamic_fontidx, rel-9_07
Changes since 1.38: +5 -4 lines
Diff to previous 1.38
*** empty log message ***

Revision 1.38 - (view) (download) (annotate) - [select for diffs]
Wed Nov 5 14:43:54 2008 UTC (15 years, 6 months ago) by root
Branch: MAIN
CVS Tags: rel-9_06
Changes since 1.37: +8 -4 lines
Diff to previous 1.37
minor overlay refactoring, syntax changes

Revision 1.37 - (view) (download) (annotate) - [select for diffs]
Mon Jul 21 16:51:31 2008 UTC (15 years, 9 months ago) by root
Branch: MAIN
Changes since 1.36: +8 -0 lines
Diff to previous 1.36
*** empty log message ***

Revision 1.36 - (view) (download) (annotate) - [select for diffs]
Fri Dec 14 11:11:31 2007 UTC (16 years, 5 months ago) by ayin
Branch: MAIN
CVS Tags: rel-8_8, rel-8_9, rel-9_0, rel-9_01, rel-9_02, rel-9_05
Changes since 1.35: +3 -0 lines
Diff to previous 1.35
Move MOD macro to rxvtutil.h.

Revision 1.35 - (view) (download) (annotate) - [select for diffs]
Tue Dec 4 16:33:42 2007 UTC (16 years, 5 months ago) by root
Branch: MAIN
Changes since 1.34: +2 -1 lines
Diff to previous 1.34
*** empty log message ***

Revision 1.34 - (view) (download) (annotate) - [select for diffs]
Sun Dec 2 22:37:14 2007 UTC (16 years, 5 months ago) by root
Branch: MAIN
Changes since 1.33: +2 -0 lines
Diff to previous 1.33
*** empty log message ***

Revision 1.33 - (view) (download) (annotate) - [select for diffs]
Sun Dec 2 22:36:42 2007 UTC (16 years, 5 months ago) by root
Branch: MAIN
Changes since 1.32: +0 -2 lines
Diff to previous 1.32
*** empty log message ***

Revision 1.32 - (view) (download) (annotate) - [select for diffs]
Sun Dec 2 12:31:44 2007 UTC (16 years, 5 months ago) by ayin
Branch: MAIN
Changes since 1.31: +29 -29 lines
Diff to previous 1.31
Minor reordering.

Revision 1.31 - (view) (download) (annotate) - [select for diffs]
Thu Nov 22 15:32:39 2007 UTC (16 years, 5 months ago) by root
Branch: MAIN
CVS Tags: rel-8_6, rel-8_7
Changes since 1.30: +1 -1 lines
Diff to previous 1.30
*** empty log message ***

Revision 1.30 - (view) (download) (annotate) - [select for diffs]
Tue Nov 20 17:44:44 2007 UTC (16 years, 5 months ago) by root
Branch: MAIN
CVS Tags: rel-8_5a
Changes since 1.29: +9 -12 lines
Diff to previous 1.29
*** empty log message ***

Revision 1.29 - (view) (download) (annotate) - [select for diffs]
Wed Oct 31 09:55:24 2007 UTC (16 years, 6 months ago) by ayin
Branch: MAIN
Changes since 1.28: +1 -1 lines
Diff to previous 1.28
Remove trailing whitespace.

Revision 1.28 - (view) (download) (annotate) - [select for diffs]
Tue Jun 26 10:46:28 2007 UTC (16 years, 10 months ago) by ayin
Branch: MAIN
CVS Tags: rel-8_3, rel-8_4
Changes since 1.27: +1 -2 lines
Diff to previous 1.27
gcc-3.4 has __builtin_{ctz,popcount}.

Revision 1.27 - (view) (download) (annotate) - [select for diffs]
Fri Jun 23 14:31:38 2006 UTC (17 years, 10 months ago) by root
Branch: MAIN
CVS Tags: rel-7_8, rel-7_9, rel-8_0, rel-8_1, rel-8_2
Changes since 1.26: +2 -0 lines
Diff to previous 1.26
*** empty log message ***

Revision 1.26 - (view) (download) (annotate) - [select for diffs]
Tue Jan 31 16:57:35 2006 UTC (18 years, 3 months ago) by root
Branch: MAIN
CVS Tags: rel-7_6, rel-7_7
Changes since 1.25: +1 -1 lines
Diff to previous 1.25
*** empty log message ***

Revision 1.25 - (view) (download) (annotate) - [select for diffs]
Mon Jan 30 19:46:13 2006 UTC (18 years, 3 months ago) by root
Branch: MAIN
CVS Tags: rel-7_5
Changes since 1.24: +2 -0 lines
Diff to previous 1.24
*** empty log message ***

Revision 1.24 - (view) (download) (annotate) - [select for diffs]
Mon Jan 30 16:12:58 2006 UTC (18 years, 3 months ago) by root
Branch: MAIN
Changes since 1.23: +27 -5 lines
Diff to previous 1.23
*** empty log message ***

Revision 1.23 - (view) (download) (annotate) - [select for diffs]
Sun Jan 29 22:30:21 2006 UTC (18 years, 3 months ago) by root
Branch: MAIN
Changes since 1.22: +0 -1 lines
Diff to previous 1.22
*** empty log message ***

Revision 1.22 - (view) (download) (annotate) - [select for diffs]
Sun Jan 29 22:27:04 2006 UTC (18 years, 3 months ago) by root
Branch: MAIN
Changes since 1.21: +14 -0 lines
Diff to previous 1.21
*** empty log message ***

Revision 1.21 - (view) (download) (annotate) - [select for diffs]
Sun Jan 29 20:51:28 2006 UTC (18 years, 3 months ago) by root
Branch: MAIN
Changes since 1.20: +8 -0 lines
Diff to previous 1.20
*** empty log message ***

Revision 1.20 - (view) (download) (annotate) - [select for diffs]
Wed Jan 25 00:42:21 2006 UTC (18 years, 3 months ago) by root
Branch: MAIN
CVS Tags: rel-7_3, rel-7_3a, rel-7_4
Changes since 1.19: +10 -0 lines
Diff to previous 1.19
*** empty log message ***

Revision 1.19 - (view) (download) (annotate) - [select for diffs]
Sun Jan 22 00:36:59 2006 UTC (18 years, 3 months ago) by root
Branch: MAIN
CVS Tags: rel-7_2
Changes since 1.18: +2 -1 lines
Diff to previous 1.18
*** empty log message ***

Revision 1.18 - (view) (download) (annotate) - [select for diffs]
Tue Jan 17 16:06:48 2006 UTC (18 years, 3 months ago) by root
Branch: MAIN
CVS Tags: rel-7_1
Changes since 1.17: +2 -2 lines
Diff to previous 1.17
*** empty log message ***

Revision 1.17 - (view) (download) (annotate) - [select for diffs]
Thu Jan 12 00:35:39 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
CVS Tags: rel-7_0
Changes since 1.16: +0 -20 lines
Diff to previous 1.16
*** empty log message ***

Revision 1.16 - (view) (download) (annotate) - [select for diffs]
Wed Jan 11 00:59:58 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.15: +22 -0 lines
Diff to previous 1.15
*** empty log message ***

Revision 1.15 - (view) (download) (annotate) - [select for diffs]
Mon Jan 2 15:35:43 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
CVS Tags: rel-6_3
Changes since 1.14: +5 -0 lines
Diff to previous 1.14
*** empty log message ***

Revision 1.14 - (view) (download) (annotate) - [select for diffs]
Wed Dec 21 14:23:30 2005 UTC (18 years, 4 months ago) by root
Branch: MAIN
CVS Tags: rel-6_0, rel-6_1, rel-6_2
Changes since 1.13: +1 -2 lines
Diff to previous 1.13
*** empty log message ***

Revision 1.13 - (view) (download) (annotate) - [select for diffs]
Wed Dec 21 14:19:19 2005 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.12: +8 -6 lines
Diff to previous 1.12
*** empty log message ***

Revision 1.12 - (view) (download) (annotate) - [select for diffs]
Wed Dec 21 10:34:24 2005 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.11: +4 -2 lines
Diff to previous 1.11
*** empty log message ***

Revision 1.11 - (view) (download) (annotate) - [select for diffs]
Tue Dec 20 19:30:59 2005 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.10: +6 -1 lines
Diff to previous 1.10
*** empty log message ***

Revision 1.10 - (view) (download) (annotate) - [select for diffs]
Mon Nov 28 19:35:04 2005 UTC (18 years, 5 months ago) by root
Branch: MAIN
CVS Tags: rel-5_9
Changes since 1.9: +2 -2 lines
Diff to previous 1.9
*** empty log message ***

Revision 1.9 - (view) (download) (annotate) - [select for diffs]
Sun Jun 26 19:59:29 2005 UTC (18 years, 10 months ago) by root
Branch: MAIN
CVS Tags: rel-5_7, rel-5_8
Changes since 1.8: +2 -0 lines
Diff to previous 1.8
*** empty log message ***

Revision 1.8 - (view) (download) (annotate) - [select for diffs]
Sun Jan 16 15:59:45 2005 UTC (19 years, 3 months ago) by root
Branch: MAIN
CVS Tags: rel-4_8, rel-4_9, rel-5_0, rel-5_1, rel-5_2, rel-5_3, rel-5_4, rel-5_5
Changes since 1.4: +111 -102 lines
Diff to previous 1.4
*** empty log message ***

Revision 1.4 - (view) (download) (annotate) - [select for diffs]
Thu Sep 2 07:44:40 2004 UTC (19 years, 8 months ago) by root
Branch: MAIN
CVS Tags: rel-4_0, rel-4_1, rel-4_2, rel-4_3, rel-4_4, rel-4_6, rel-4_7
Changes since 1.3: +255 -6 lines
Diff to previous 1.3
*** empty log message ***

Revision 1.3 - (view) (download) (annotate) - [select for diffs]
Sat Aug 21 05:32:00 2004 UTC (19 years, 8 months ago) by root
Branch: MAIN
CVS Tags: rel-3_8
Changes since 1.2: +6 -0 lines
Diff to previous 1.2
*** empty log message ***

Revision 1.2 - (view) (download) (annotate) - [select for diffs]
Sun Aug 15 07:20:16 2004 UTC (19 years, 9 months ago) by root
Branch: MAIN
CVS Tags: rel-3_7
Changes since 1.1: +4 -2 lines
Diff to previous 1.1
*** empty log message ***

Revision 1.1 - (view) (download) (annotate) - [select for diffs]
Sun Aug 15 00:37:04 2004 UTC (19 years, 9 months ago) by root
Branch: MAIN
*** empty log message ***

Convenience Links

Links to HEAD: (view) (download) (annotate)

Compare Revisions

This form allows you to request diffs between any two revisions of this file. For each of the two "sides" of the diff, select a symbolic revision name using the selection box, or choose 'Use Text Field' and enter a numeric revision.

  Diffs between and
  Type of Diff should be a