Skip to content

Commit

Permalink
Do not submit
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 452427185
  • Loading branch information
common-lisp-dev-copybara authored and copybara-github committed Jun 2, 2022
1 parent 806ed0c commit 7f6eabe
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion define-proto.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,10 @@ Parameters:
(let ((public-accessor-name (proto-slot-function-name proto-type public-slot-name :get))
(is-set-accessor (fintern "~A-%%IS-SET" proto-type))
(hidden-accessor-name (fintern "~A-~A" proto-type slot-name))
(has-function-name (proto-slot-function-name proto-type public-slot-name :has))
(has-function-name (proto-slot-function-name
proto-type public-slot-name
(if (eq (proto-syntax *current-file-descriptor*) :proto3)
:has* :has)))
(default-form (get-default-form (proto-type field)
(proto-default field)
(proto-container field)
Expand Down

0 comments on commit 7f6eabe

Please sign in to comment.