OpenSDE Packages Database (without history before r20070)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

90 lines
2.3 KiB

  1. # --- SDE-COPYRIGHT-NOTE-BEGIN ---
  2. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  3. #
  4. # Filename: package/.../ctwm/yyparse.patch
  5. # Copyright (C) 2004 - 2006 The T2 SDE Project
  6. # Copyright (C) 1998 - 2003 Clifford Wolf
  7. #
  8. # More information can be found in the files COPYING and README.
  9. #
  10. # This patch file is dual-licensed. It is available under the license the
  11. # patched project is licensed under, as long as it is an OpenSource license
  12. # as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
  13. # of the GNU General Public License as published by the Free Software
  14. # Foundation; either version 2 of the License, or (at your option) any later
  15. # version.
  16. # --- SDE-COPYRIGHT-NOTE-END ---
  17. *** ./gram.y~ Tue Dec 11 16:38:52 2001
  18. --- ./gram.y Thu Jun 13 08:42:58 2002
  19. ***************
  20. *** 419,425 ****
  21. | WINDOW_RING { list = &Scr->WindowRingL; }
  22. win_list
  23. | WINDOW_RING { Scr->WindowRingAll = TRUE; }
  24. - ;
  25. | WINDOW_RING_EXCLUDE { if (!Scr->WindowRingL)
  26. Scr->WindowRingAll = TRUE;
  27. list = &Scr->WindowRingExcludeL; }
  28. --- 419,424 ----
  29. ***************
  30. *** 427,432 ****
  31. --- 426,432 ----
  32. | WINDOW_GEOMETRIES { }
  33. wingeom_list
  34. + ;
  35. noarg : KEYWORD { if (!do_single_keyword ($1)) {
  36. twmrc_error_prefix();
  37. ***************
  38. *** 683,691 ****
  39. | wingeom_entries wingeom_entry
  40. ;
  41. ! wingeom_entry : string string { AddToList (&Scr->WindowGeometries, $1, $2) }
  42. !
  43. !
  44. squeeze : SQUEEZE_TITLE {
  45. if (HasShape) Scr->SqueezeTitle = TRUE;
  46. --- 683,690 ----
  47. | wingeom_entries wingeom_entry
  48. ;
  49. ! wingeom_entry : string string { AddToList (&Scr->WindowGeometries, $1, $2); }
  50. ! ;
  51. squeeze : SQUEEZE_TITLE {
  52. if (HasShape) Scr->SqueezeTitle = TRUE;
  53. ***************
  54. *** 834,839 ****
  55. --- 833,839 ----
  56. occupy_workspc_entry : string {
  57. AddToClientsList ($1, client);
  58. }
  59. + ;
  60. occupy_window_list : LB occupy_window_entries RB {}
  61. ;
  62. ***************
  63. *** 845,850 ****
  64. --- 845,851 ----
  65. occupy_window_entry : string {
  66. AddToClientsList (workspace, $1);
  67. }
  68. + ;
  69. icon_list : LB icon_entries RB {}
  70. ;
  71. ***************
  72. *** 962,967 ****
  73. --- 963,970 ----
  74. RemoveDQuote(ptr);
  75. $$ = (unsigned char*)ptr;
  76. }
  77. + ;
  78. +
  79. number : NUMBER { $$ = $1; }
  80. ;