• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
      • Apt
      • Zfc
      • Acre
      • Milawa
      • Smtlink
      • Abnf
      • Vwsim
      • Isar
      • Wp-gen
      • Dimacs-reader
      • Pfcs
      • Legacy-defrstobj
      • C
      • Proof-checker-array
      • Soft
      • Farray
      • Rp-rewriter
      • Instant-runoff-voting
      • Imp-language
      • Sidekick
      • Ethereum
      • Leftist-trees
      • Java
        • Atj
        • Aij
        • Language
          • Syntax
            • Grammar
            • Unicode-escapes
            • Unicode-input-char
            • Escape-sequence
            • Identifiers
            • Primitive-types
            • Reference-types
            • Unicode-characters
            • Keywords
            • Integer-literals
            • String-literals
            • Octal-digits
            • Hexadecimal-digits
            • Decimal-digits
            • Binary-digits
            • Character-literals
              • Unicode-charlit-char
              • Char-literal
                • Char-literal-fix
                • Char-literal-case
                • Char-literal-equiv
                • Char-literalp
                • Char-literal-escape
                  • Char-literal-escape->get
                  • Make-char-literal-escape
                  • Change-char-literal-escape
                  • Char-literal-char
                  • Char-literal-kind
                • Unicode-charlit-char-fix
                • Unicode-charlit-char-p
              • Null-literal
              • Floating-point-literals
              • Boolean-literals
              • Package-names
              • Literals
            • Semantics
        • Riscv
        • Taspi
        • Bitcoin
        • Zcash
        • Des
        • X86isa
        • Sha-2
        • Yul
        • Proof-checker-itp13
        • Regex
        • ACL2-programming-language
        • Json
        • Jfkr
        • Equational
        • Cryptography
        • Axe
        • Poseidon
        • Where-do-i-place-my-book
        • Aleo
        • Bigmems
        • Builtins
        • Execloader
        • Solidity
        • Paco
        • Concurrent-programs
        • Bls12-377-curves
      • Debugging
      • Community
      • Std
      • Proof-automation
      • Macro-libraries
      • ACL2
      • Interfacing-tools
      • Hardware-verification
      • Software-verification
      • Math
      • Testing-utilities
    • Char-literal-escape

    Change-char-literal-escape

    Modifying constructor for char-literal-escape structures.

    Syntax
    (change-char-literal-escape x 
                                [:get <get>]) 
    

    This is an often useful alternative to make-char-literal-escape.

    We construct a new char-literal-escape structure that is a copy of x, except that you can explicitly change some particular fields. Any fields you don't mention just keep their values from x.

    Definition

    This is an ordinary change- macro introduced by fty::defprod.

    Macro: change-char-literal-escape

    (defmacro change-char-literal-escape (x &rest args)
      (std::change-aggregate 'char-literal-escape
                             x args
                             '((:get . char-literal-escape->get))
                             'change-char-literal-escape
                             'nil))