NoAutoLoad

NoAutoLoad — removes selected AutoLoad rules.

Syntax

NoAutoLoad ("pattern")

		

Arguments

pattern

A shell style pattern.

Returns

The _auto_load_alist_ (a list of all currently stored AutoLoad rules) with the rules corresponding to the pattern removed.

Description

This function removes from future consideration any AutoLoad rules that correspond to the pattern.

The available patterns are as follows:

    matches any number of characters, including zero.

    [cmatches a single character which is a member of the set contained within the square brackets.

    [^cmatches any single character which is not a member of the set contained within the square brackets.

    matches a single character.

    {xx,yymatches either of the simple strings contained within the braces.

    \c (a backslash followed by a character) - matches that character.

[Note]

This function is not part of the base Gamma executable. It is provided by a Gamma library AutoLoadLib.g which can be accessed using the Gamma require function like this:

require ("/usr/cogent/require/AutoLoadLib.g");

Example

See the example for AutoLoad.

See Also

AutoLoad, ClearAutoLoad