>>>> "SY" == Steve Youngs
<youngs(a)xemacs.org> writes:
SY> Vin, have you got time to do a quick audit on ./src/*/* to fix
SY> up any other occurances of this type of bogosity? Or did you
SY> already and this was the only one?
No, there are a few. Separate patch. If you grep, you'll see some
obvious URLs, and the following:
A whole bunch in src/intl-encap-win32.c:
Not C code, this is a different language embedded in a C comment.
src/lrecord.h: Lisp_Object next_weak; // Used to chain together all of the weak
src/lrecord.h: // hash tables. Don't mark through this.
src/lrecord.h: // type-specific extra data attached to a specifier
src/process-unix.c: /* leave "//" (from FSF) */
src/process-unix.c: // this is not currently supported
src/process-unix.c: #define TIOCSIGNAL (tIOC|31) // pty: send signal to
slave
src/symeval.h: DEFUN ("name, Fname, ...); // at top level in foo.c
src/symeval.h: DEFSUBR (Fname); // in syms_of_foo();
src/symeval.h: DEFUN ("name, Fname, ...); // at top level in foo.c
src/symeval.h: DEFSUBR_MACRO (Fname); // in syms_of_foo();
src/text.h: DATA, (ptr, len), // input data is a fixed buffer of size len
src/text.h: ALLOCA, (ptr, len), // output data is in a ALLOCA()ed buffer of size len
src/text.h: MALLOC, (ptr, len), // output data is in a malloc()ed buffer of size len
src/text.h: C_STRING_ALLOCA, ptr, // equivalent to ALLOCA (ptr, len_ignored) on output
src/text.h: C_STRING_MALLOC, ptr, // equivalent to MALLOC (ptr, len_ignored) on output
src/text.h: C_STRING, ptr, // equivalent to DATA, (ptr, strlen/wcslen (ptr))
src/text.h: // on input (the Unicode version is used when
correct)
src/text.h: LISP_STRING, string, // input or output is a Lisp_Object of type string
src/text.h: LISP_BUFFER, buffer, // output is written to (point) in lisp buffer
src/text.h: LISP_LSTREAM, lstream, // input or output is a Lisp_Object of type lstream
src/text.h: LISP_OPAQUE, object, // input or output is a Lisp_Object of type opaque
The above are in explanatory comments; don't change, C comments don't
nest.
--
Institute of Policy and Planning Sciences
http://turnbull.sk.tsukuba.ac.jp
University of Tsukuba Tennodai 1-1-1 Tsukuba 305-8573 JAPAN
Ask not how you can "do" free software business;
ask what your business can "do for" free software.