You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

17 lines
334 B

;;; narrowing.el --- Trigger errors with narrowing
;;; Commentary:
;; A file to test narrowing
;;; Code:
(message "We are before of narrowing here: %s")
(defun we-narrow-to-this-function ()
"This docstring has no final period"
(message "Hello %s"))
(message "We are after of narrowing here: %s")
;;; narrowing.el ends here