esc               396 maint/gnulib/lib/quotearg.c       unsigned char esc;
esc               484 maint/gnulib/lib/quotearg.c         case '\a': esc = 'a'; goto c_escape;
esc               485 maint/gnulib/lib/quotearg.c         case '\b': esc = 'b'; goto c_escape;
esc               486 maint/gnulib/lib/quotearg.c         case '\f': esc = 'f'; goto c_escape;
esc               487 maint/gnulib/lib/quotearg.c         case '\n': esc = 'n'; goto c_and_shell_escape;
esc               488 maint/gnulib/lib/quotearg.c         case '\r': esc = 'r'; goto c_and_shell_escape;
esc               489 maint/gnulib/lib/quotearg.c         case '\t': esc = 't'; goto c_and_shell_escape;
esc               490 maint/gnulib/lib/quotearg.c         case '\v': esc = 'v'; goto c_escape;
esc               491 maint/gnulib/lib/quotearg.c         case '\\': esc = c;
esc               513 maint/gnulib/lib/quotearg.c               c = esc;