mirror of the now-defunct rocklinux.org
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.

92 lines
2.5 KiB

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