vote up 1 vote down star

The defaults for M-x lgrep is to use -e for the pattern. I'd like to use -E, but it looks like -e is hard-coded into grep.el. Tell me I'm wrong! Any hints? (I'm using version 22.1 - is the grass any greener in 23?)

flag

2 Answers

vote up 3 vote down

If you use a C-u prefix to M-x lgrep, you can edit the resulting command line before it's executed. grep-command is the default command string used by Emacs' various grep functions, and you can do M-x customize-variable RET grep-command to change it.

link|flag
vote up 0 vote down

If understand your problem, the solution may be changing the grep-command variable.

This variable has default value set to: "grep -nH -e " and you probably want to change "-e" to "-E"

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.