From: Alan Mackenzie Date: Wed, 20 May 2020 19:02:26 +0000 (+0000) Subject: CC Mode: Fix bug #39972, by fixing c-display-defun-name for nested defuns X-Git-Tag: emacs-27.1-rc1~116 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c0aa2f2abf;p=emacs.git CC Mode: Fix bug #39972, by fixing c-display-defun-name for nested defuns * lisp/progmodes/cc-mode.el (c-common-init): Build add-log-current-defun-function out of c-defun-name-and-limits instead of the former c-defun-name. --- diff --git a/lisp/progmodes/cc-mode.el b/lisp/progmodes/cc-mode.el index fd7750b0d82..066bec60091 100644 --- a/lisp/progmodes/cc-mode.el +++ b/lisp/progmodes/cc-mode.el @@ -770,7 +770,7 @@ compatible with old code; callers should always specify it." (set (make-local-variable 'outline-level) 'c-outline-level) (set (make-local-variable 'add-log-current-defun-function) (lambda () - (or (c-cpp-define-name) (c-defun-name)))) + (or (c-cpp-define-name) (car (c-defun-name-and-limits nil))))) (let ((rfn (assq mode c-require-final-newline))) (when rfn (if (boundp 'mode-require-final-newline)