mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-02 21:52:04 -08:00
12 lines
178 B
Text
12 lines
178 B
Text
// Convert simple cases to build_string.
|
|
@@
|
|
identifier I;
|
|
@@
|
|
- make_string (I, strlen (I))
|
|
+ build_string (I)
|
|
|
|
@@
|
|
constant C;
|
|
@@
|
|
- make_string (C, strlen (C))
|
|
+ build_string (C)
|