I am using the Emacs Code Browser and I want to be able to programmatically find out if I am in the directory browser or in a code buffer. How can I do this?

link|improve this question

65% accept rate
feedback

1 Answer

up vote 1 down vote accepted
  (if (string-match "*ECB" (buffer-name))
    (print "In ECB")
    (print "NOT in ECB")
  )
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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