Function Entry: CLAL-ENABLE-ENC-DIAGNOSTIC

← Prev | ↑ Chapter | Next → | Index | Symbols

Function Entry: CLAL-ENABLE-ENC-DIAGNOSTIC

Name

clal-enable-enc-diagnostic

Class

clautolisp Extension Function

Syntax

(clal-enable-enc-diagnostic [code …])

Arguments and Values

  • code — zero or more string designators (strings or symbols). With no arguments, re-enable every code.

Description

Undo clal-suppress-enc-diagnostic for each code, removing it from the session's suppression list. Called with no arguments, it clears the entire suppression list (re-enable everything).

Return Values

The (possibly empty) list of still-suppressed codes, as a list of AutoLISP strings.

Side Effects

Mutates the session's encoding-diagnostic suppression list.

Affected By

  • The current suppression list.

Exceptional Situations

Argument-type errors propagate when a code is not a valid string designator.

Examples

(clal-enable-enc-diagnostic 'enc-extension-used)
=> ("enc-foreign-dialect")
(clal-enable-enc-diagnostic)
=> nil

Availability

  • clautolisp: documented (this entry); implemented since an earlier clautolisp release.
  • AutoCAD: NOT present.
  • BricsCAD: NOT present.

Source Notes

  • clautolisp-only extension; part of the encoding-diagnostics family. See this chapter's Overview.