view .hgignore @ 19884:f81a1da191e4

Script file or eval code are not interactive session so keep Octave quiet. * libinterp/octave.cc: add a new static variable an_octave_program to keep track when this is called for an Octave program and not for an Octave interactive session. The main point of this patch is so that octave_startup_message() on octave_execute_interpreter() is not called. A continuation work from csets 6ba5f1ff041e and f3ac54ac2c6a which also aimed at doing this. The idea is to have an_octave_program inherit other features of a non-interactive session (such as being canceled by forcing an interactive session or not starting readline).
author Carnë Draug <carandraug@octave.org>
date Tue, 24 Feb 2015 19:47:22 +0000
parents dc76e3909d36
children c16c446204e5
line wrap: on
line source

syntax: regexp
# The recurrent (^|/) idiom in the regexps below should be understood
# to mean "at any directory" while the ^ idiom means "from the
# project's top-level directory".

# gnulib makes these silly backup files
.~$

# This directory gets created by gnulib during the build. 
# It contains no Octave files.
^libgnu/*

# This directory mostly contains cruft during build time, but it does
# contain some Octave code, so we gotta be a bit more careful about
# what we ignore here
^m4/(?!ax_).+\.m4$

# Emacs tools create these
(^|/)TAGS$
(^|/)semantic.cache$

(/|^)Makefile\.in$
^INSTALL$

^aclocal\.m4$
^build-.*($|/)
^configure$
^autom4te\.cache($|/)
^config\.in\.h$

# e.g. doc/faq/OctaveFAQ.info
#      doc/interpreter/octave.info-4
^doc/.*\.info(-\d)?$

^doc/\w*/stamp-vti$
^doc/\w*/version\.texi$
^doc/interpreter/images\.mk$

# e.g. liboctave/operators/smx-op-inc.mk
^liboctave/operators/\w+-op-\w+\.mk$

^libinterp/dldfcn/module\.mk$