emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: New and improved patch for Windows implementation of play-sound-inte


From: Richard Stallman
Subject: Re: New and improved patch for Windows implementation of play-sound-internal
Date: Wed, 30 Oct 2002 12:16:43 -0500

    +  memset(sz_cmd_buf,0,sizeof(sz_cmd_buf));=0A=
    +  memset(sz_ret_buf,0,sizeof(sz_ret_buf));=0A=
    +  strcpy(sz_cmd_buf,"play GNUEmacs_PlaySound_Device wait");=0A=

Please put a space after each comma, and outside of parentheses
(unless they are inside other parentheses):

    +  memset (sz_cmd_buf, 0, sizeof (sz_cmd_buf));=0A=
    +  memset (sz_ret_buf, 0, sizeof (sz_ret_buf));=0A=
    +  strcpy (sz_cmd_buf, "play GNUEmacs_PlaySound_Device wait");=0A=

Please put spaces around binary operators such as !=.

+  if (mci_error!=0)

should be

+  if (mci_error != 0)




reply via email to

[Prev in Thread] Current Thread [Next in Thread]