I also found another use for the m4_noquote macro:

  define([TAB],
  [       ])

  define([LF],
  [
  ])

  patsubst([$1],m4_noquote([[LF TAB]+]),[ ])

is a lot more readable than

  patsubst([$1],m4_noquote([[
         ]+]),[ ])

Cheers,

  Lars J

Reply via email to