~ubuntu-branches/ubuntu/wily/bc/wily

« back to all changes in this revision

Viewing changes to bc/bc.c

  • Committer: Package Import Robot
  • Author(s): Ryan Kavanagh
  • Date: 2013-05-24 07:26:52 UTC
  • mfrom: (3.1.9 sid)
  • Revision ID: package-import@ubuntu.com-20130524072652-7pdv9ychdc9gm9sy
Tags: 1.06.95-7
* New maintainer (Closes: #705771)
* Switch to Debian source format 3.0 (quilt)
* Updated copyright file with missing licenses and holders. Now in DEP-5
  format.
* Bump standards version to 3.9.4
* Bump debhelper Build-Dependency to >= 9 and switch from old-style rules
  with manual calls to dh_* to modern style dh rules
* Bump compat level to 9
* Drop libreadline5-dev from Build-Depends, it no longer exists in unstable
* Add a doc-base file for bc
* Fix a typo in bc, 01_typo_in_bc.diff
* Fix hyphens used as minus signs in manpages,
  02_hyphens_as_minus_in_man.diff
* Fix array initialization bug, 03_array_initialize.diff (Closes: #671513,
  #586969)
* Revert all inline patches and introduce them as logical quilt patches
  + Set the info dircategory to Math, 04_info_dircategory.diff
  + Notice read/write errors on input and output,
    05_notice_read_write_errors.diff
* clean target now conforms to Debian Policy §4.9, "must undo any effects
  that the build target may have had [...]"
* Added Vcs-Git/Vcs-Browser entries to debian/control
* Reintroduce the missing 1.06.94-3.1 changelog entry
* Get rid of postinst/postrm files, they were unneeded

Show diffs side-by-side

added added

removed removed

Lines of Context:
1922
1922
#line 460 "bc.y"
1923
1923
    {
1924
1924
                              if ((yyvsp[0].i_value) & EX_COMP)
1925
 
                                warn ("comparison in return expresion");
 
1925
                                warn ("comparison in return expression");
1926
1926
                              if (!((yyvsp[0].i_value) & EX_PAREN))
1927
1927
                                warn ("return expression requires parenthesis");
1928
1928
                              if ((yyvsp[0].i_value) & EX_VOID)