diff options
Diffstat (limited to 'lisp/progmodes')
| -rw-r--r-- | lisp/progmodes/octave.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/progmodes/octave.el b/lisp/progmodes/octave.el index 8541cced3a5..50f888cb9fd 100644 --- a/lisp/progmodes/octave.el +++ b/lisp/progmodes/octave.el @@ -1064,7 +1064,7 @@ directory and makes this the current buffer's default directory." (pcase (and buffer-file-name (file-name-extension buffer-file-name)) (`"cc" (funcall search "\\_<DEFUN\\(?:_DLD\\)?\\s-*(\\s-*\\(\\(?:\\sw\\|\\s_\\)+\\)" 1)) - (t (funcall search octave-function-header-regexp 3))))) + (_ (funcall search octave-function-header-regexp 3))))) (defun octave-function-file-p () "Return non-nil if the first token is \"function\". @@ -1820,7 +1820,7 @@ If the environment variable OCTAVE_SRCDIR is set, it is searched first." (file-name-nondirectory name))) name (user-error "Aborted"))) - (t name))) + (_ name))) (defvar find-tag-marker-ring) |
