Skip to content

Commit

Permalink
protobuf.asd: correct spelling of license
Browse files Browse the repository at this point in the history
unittest.proto: comment out infinity and NaN fields
  • Loading branch information
brown committed May 7, 2011
1 parent 15b121b commit bee6f8a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
15 changes: 7 additions & 8 deletions google/protobuf/unittest.proto
Original file line number Diff line number Diff line change
Expand Up @@ -488,14 +488,13 @@ message TestExtremeDefaultValues {
optional float small_negative_float = 13 [default = -8e-28];

// Text for nonfinite floating-point values.
optional double inf_double = 14 [default = inf];
optional double neg_inf_double = 15 [default = -inf];
// XXXXXXXXXX: SBCL cannot handle NaN initforms.
// optional double nan_double = 16 [default = nan];
optional float inf_float = 17 [default = inf];
optional float neg_inf_float = 18 [default = -inf];
// XXXXXXXXXX: SBCL cannot handle NaN initforms.
// optional float nan_float = 19 [default = nan];
// XXXXXXXXXX: Common Lisp does not have standard infinities and NaNs.
// optional double inf_double = 14 [default = inf];
// optional double neg_inf_double = 15 [default = -inf];
// optional double nan_double = 16 [default = nan];
// optional float inf_float = 17 [default = inf];
// optional float neg_inf_float = 18 [default = -inf];
// optional float nan_float = 19 [default = nan];
}

message SparseEnumMessage {
Expand Down
2 changes: 1 addition & 1 deletion protobuf.asd
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ LOAD-OP, which means ASDF loads both the .lisp file and the .fasl file."
:long-description "A Common Lisp implementation of Google's protocol buffer support libraries."
:version "0.7"
:author "Robert Brown"
:licence "See file COPYING and the copyright messages in individual files."
:license "See file COPYING and the copyright messages in individual files."
;; After loading the system, announce its availability.
:perform (load-op :after (operation component)
(pushnew :protobuf cl:*features*)
Expand Down

0 comments on commit bee6f8a

Please sign in to comment.