~ubuntu-branches/ubuntu/intrepid/ecl/intrepid

« back to all changes in this revision

Viewing changes to src/cmp/cmpspecial.lsp

  • Committer: Bazaar Package Importer
  • Author(s): Peter Van Eynde
  • Date: 2006-06-21 09:21:21 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20060621092121-txz1f21lj0wh0f67
Tags: 0.9h-20060617-1
* New upstream version
* Updated standards version without real changes. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
 
16
16
(defun c1quote (args)
17
17
  (check-args-number 'QUOTE args 1 1)
18
 
  (c1constant-value (car args) t))
 
18
  (c1constant-value (car args) :always t))
19
19
 
20
20
(defun c1declare (args)
21
21
  (cmperr "The declaration ~s was found in a bad place." (cons 'DECLARE args)))
23
23
(defun c1the (args)
24
24
  (check-args-number 'THE args 2 2)
25
25
  (let* ((form (c1expr (second args)))
26
 
         (the-type (type-filter (first args)))
 
26
         (the-type (type-filter (first args) t))
27
27
         type)
28
28
    (cond ((and (consp the-type) (eq (first the-type) 'VALUES))
29
29
           (cmpwarn "Ignoring THE form with type ~A" the-type))