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.

95 lines
2.6 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 - 2003 Clifford Wolf
  10. #
  11. # This program is free software; you can redistribute it and/or modify
  12. # it under the terms of the GNU General Public License as published by
  13. # the Free Software Foundation; either version 2 of the License, or
  14. # (at your option) any later version. A copy of the GNU General Public
  15. # License can be found at Documentation/COPYING.
  16. #
  17. # Many people helped and are helping developing ROCK Linux. Please
  18. # have a look at http://www.rocklinux.org/ and the Documentation/TEAM
  19. # file for details.
  20. #
  21. # --- ROCK-COPYRIGHT-NOTE-END ---
  22. *** ./gram.y~ Tue Dec 11 16:38:52 2001
  23. --- ./gram.y Thu Jun 13 08:42:58 2002
  24. ***************
  25. *** 419,425 ****
  26. | WINDOW_RING { list = &Scr->WindowRingL; }
  27. win_list
  28. | WINDOW_RING { Scr->WindowRingAll = TRUE; }
  29. - ;
  30. | WINDOW_RING_EXCLUDE { if (!Scr->WindowRingL)
  31. Scr->WindowRingAll = TRUE;
  32. list = &Scr->WindowRingExcludeL; }
  33. --- 419,424 ----
  34. ***************
  35. *** 427,432 ****
  36. --- 426,432 ----
  37. | WINDOW_GEOMETRIES { }
  38. wingeom_list
  39. + ;
  40. noarg : KEYWORD { if (!do_single_keyword ($1)) {
  41. twmrc_error_prefix();
  42. ***************
  43. *** 683,691 ****
  44. | wingeom_entries wingeom_entry
  45. ;
  46. ! wingeom_entry : string string { AddToList (&Scr->WindowGeometries, $1, $2) }
  47. !
  48. !
  49. squeeze : SQUEEZE_TITLE {
  50. if (HasShape) Scr->SqueezeTitle = TRUE;
  51. --- 683,690 ----
  52. | wingeom_entries wingeom_entry
  53. ;
  54. ! wingeom_entry : string string { AddToList (&Scr->WindowGeometries, $1, $2); }
  55. ! ;
  56. squeeze : SQUEEZE_TITLE {
  57. if (HasShape) Scr->SqueezeTitle = TRUE;
  58. ***************
  59. *** 834,839 ****
  60. --- 833,839 ----
  61. occupy_workspc_entry : string {
  62. AddToClientsList ($1, client);
  63. }
  64. + ;
  65. occupy_window_list : LB occupy_window_entries RB {}
  66. ;
  67. ***************
  68. *** 845,850 ****
  69. --- 845,851 ----
  70. occupy_window_entry : string {
  71. AddToClientsList (workspace, $1);
  72. }
  73. + ;
  74. icon_list : LB icon_entries RB {}
  75. ;
  76. ***************
  77. *** 962,967 ****
  78. --- 963,970 ----
  79. RemoveDQuote(ptr);
  80. $$ = (unsigned char*)ptr;
  81. }
  82. + ;
  83. +
  84. number : NUMBER { $$ = $1; }
  85. ;