vtwm-5.4.7-NO_SOUND_SUPPORT.patch 835 B

123456789101112131415161718192021222324252627282930313233343536
  1. * Remove all traces of sound support, even when Imakefile suggests uncommenting
  2. * a variable is enough - JeR
  3. --- a/gram.y 2005-05-17 03:19:48.000000000 +0200
  4. +++ b/gram.y 2010-09-17 01:43:51.000000000 +0200
  5. @@ -339,8 +339,6 @@
  6. function
  7. | ICONS { list = &Scr->IconNames; }
  8. icon_list
  9. - | SOUNDS
  10. - sound_list
  11. | COLOR { color = COLOR; }
  12. color_list
  13. | SAVECOLOR
  14. @@ -743,20 +741,6 @@
  15. }
  16. ;
  17. -/* djhjr - 6/22/01 */
  18. -sound_list : LB sound_entries RB
  19. - ;
  20. -
  21. -/* djhjr - 6/22/01 */
  22. -sound_entries : /* Empty */
  23. - | sound_entries sound_entry
  24. - ;
  25. -
  26. -/* djhjr - 8/16/01 */
  27. -sound_entry : string string { if (Scr->FirstTime) SetSound($1, $2, -1); }
  28. - | string string number { if (Scr->FirstTime) SetSound($1, $2, $3); }
  29. - ;
  30. -
  31. /* djhjr - 4/26/99 */
  32. applet_list : LB applet_entries RB
  33. ;