File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -371,8 +371,13 @@ It's best then to:
371
371
=item B<Don't begin a file-level symbol name with an underscore>; (I<e.g.>, don't
372
372
use: C<_FOOBAR>)
373
373
374
- It is fine to have a symbol in a function or block like C<_ref>,
375
- beginning with an underscore followed by a lowercase letter.
374
+ It is fine to have a symbol in a function or block begin with an
375
+ underscore followed by a lowercase letter, like
376
+
377
+ {
378
+ int _ref;
379
+ ...
380
+ }
376
381
377
382
=item B<Don't use two consecutive underscores in a symbol name>;
378
383
(I<e.g.>, don't use C<FOO__BAR>)
@@ -623,7 +628,7 @@ Assuming one can dereference any type of pointer for any type of data
623
628
long pony = *(long *)p; /* BAD */
624
629
625
630
Many platforms, quite rightly so, will give you a core dump instead of
626
- a pony if the p happens not to be correctly aligned.
631
+ a pony if the C<p> happens not to be correctly aligned.
627
632
628
633
=item *
629
634
You can’t perform that action at this time.
0 commit comments