From unknown Sat Jun 14 05:29:59 2025 X-Loop: help-debbugs@gnu.org Subject: bug#28746: 27.0.50; cc-mode should automatically detect Objective-C headers Resent-From: Philipp
Visit a file with a file name extension of .h and the following
contents:
@interface foo {
}
- (void)method;
@end
The buffer will be in c-mode, not objc-mode.=C2=A0 CC-Mode should
automatically detect that this is an Objective-C header and switch to
objc-mode.=C2=A0 Probably searching for @interface or @implementation shoul= d
cover most cases.